Workaround to install nodejs 24/102924/7
authorBengt Thuree <bthuree@linuxfoundation.org>
Wed, 4 Mar 2020 02:01:27 +0000 (13:01 +1100)
committerBengt Thuree <bthuree@linuxfoundation.org>
Thu, 19 Mar 2020 00:19:55 +0000 (11:19 +1100)
18.04 images fails due to dependecy issues.
Workaround to install package separately.

Issue-ID: CIMAN-33
Signed-off-by: Bengt Thuree <bthuree@linuxfoundation.org>
Change-Id: I00ba7081a106ab06a39bfb7b562d62d28851d897

packer/provision/local-builder.yaml

index 61cc509..162ac3f 100644 (file)
       become: true
       when: ansible_distribution == 'Ubuntu'
 
+    - name: Install libssl1.0-dev dep
+      apt:
+        name: libssl1.0-dev
+        update_cache: yes
+        state: fixed
+      become: true
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
+
+    - name: Install nodejs-dev dep for npm
+      apt:
+        name: nodejs-dev
+        update_cache: yes
+        state: fixed
+      become: true
+      when: ansible_distribution == 'Ubuntu'
+
     - name: Install base packages
       apt:
         name:
           - crudini
           - maven
           - python-ncclient
-          - nodejs-dev
-          - node-gyp
+        update_cache: yes
+      become: true
+      when: ansible_distribution == 'Ubuntu'
+
+    - name: Install npm and addon packages
+      apt:
+        name:
           - nodejs
           - npm
+          - node-gyp
         update_cache: yes
+        state: fixed
       become: true
       when: ansible_distribution == 'Ubuntu'
+
+