summaryrefslogtreecommitdiffstats
path: root/packer
diff options
context:
space:
mode:
Diffstat (limited to 'packer')
-rw-r--r--packer/provision/local-builder.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/packer/provision/local-builder.yaml b/packer/provision/local-builder.yaml
index 21af01364..4882fffb5 100644
--- a/packer/provision/local-builder.yaml
+++ b/packer/provision/local-builder.yaml
@@ -139,4 +139,20 @@
become: true
when: ansible_distribution == 'Ubuntu'
+ - name: Install enchant2 package for Ubuntu
+ apt:
+ name:
+ - enchant-2
+ update_cache: yes
+ state: present
+ become: true
+ when: ansible_distribution == 'Ubuntu'
+ - name: Install enchant2 package for CentOS
+ dnf:
+ name:
+ - enchant2
+ update_cache: yes
+ state: present
+ become: true
+ when: ansible_distribution == 'CentOS'