Merge "Fix: Replace nodejs-dev with libnode-dev on 20.04 Ubuntu Should fix IT-24453"
authorJessica Wagantall <jwagantall@linuxfoundation.org>
Tue, 30 Aug 2022 16:52:38 +0000 (16:52 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 30 Aug 2022 16:52:38 +0000 (16:52 +0000)
packer/provision/local-builder.yaml
packer/provision/local-docker.yaml

index 18017b8..fa1038d 100644 (file)
         update_cache: yes
         state: fixed
       become: true
-      when: ansible_distribution == 'Ubuntu'
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
+
+    - name: Install libnode-dev dep for npm
+      apt:
+        name: libnode-dev
+        update_cache: yes
+        state: fixed
+      become: true
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '20.04'
 
     - name: Install base packages
       apt:
index 869202d..0d0d86c 100644 (file)
         update_cache: yes
         state: fixed
       become: true
-      when: ansible_distribution == 'Ubuntu'
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
+
+    - name: Install libnode-dev dep for npm
+      apt:
+        name: libnode-dev
+        update_cache: yes
+        state: fixed
+      become: true
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '20.04'
 
     - name: Install supporting packages
       apt: