From fb285eb982fa35d9fbebc971cf1a733d426b0dfc Mon Sep 17 00:00:00 2001 From: Bengt Thuree Date: Fri, 7 Oct 2022 11:17:11 +1100 Subject: [PATCH] Chore: Add missing enchant-2 library Needed for ONAP Doc team Issue-ID: CIMAN-33 Signed-off-by: Bengt Thuree Change-Id: If3820546f7f137985d7e57b540a478e0505d7ff8 --- packer/provision/local-builder.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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' -- 2.16.6