From: Bengt Thuree Date: Fri, 7 Oct 2022 00:17:11 +0000 (+1100) Subject: Chore: Add missing enchant-2 library X-Git-Url: https://gerrit.onap.org/r/gitweb?p=ci-management.git;a=commitdiff_plain;h=fb285eb982fa35d9fbebc971cf1a733d426b0dfc Chore: Add missing enchant-2 library Needed for ONAP Doc team Issue-ID: CIMAN-33 Signed-off-by: Bengt Thuree Change-Id: If3820546f7f137985d7e57b540a478e0505d7ff8 --- 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'