Merge "Fix: Re-structure nodejs installation"
authorKevin Sandi <ksandi@contractor.linuxfoundation.org>
Thu, 13 Apr 2023 20:23:41 +0000 (20:23 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 13 Apr 2023 20:23:41 +0000 (20:23 +0000)
packer/provision/local-docker.yaml

index 8859961..ec37f51 100644 (file)
       become: true
       when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
 
-    - name: Install nodejs and npm
+    - name: Install nodejs
+      block:
+        - name: install nodejs prerequisites
+          apt:
+            name:
+              - apt-transport-https
+              - g++
+            update_cache: yes
+            state: present
+          become: true
+        - name: add nodejs apt key
+          apt_key:
+            url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
+            state: present
+        - name: add nodejs repository
+          apt_repository:
+            repo: deb https://deb.nodesource.com/node_19.x {{ ansible_distribution_release }} main
+            state: latest
+            update_cache: yes
+        - name: install nodejs
+          apt:
+            name:
+              - nodejs
+            state: present
+          become: true
+      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '20.04'
+
+    - name: Check nodejs and npm versions
       block:
-        - name: 'Pull latest nodejs version'
-          command: 'curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - && sudo apt-get install -y nodejs'
-          become: yes
         - name: 'Check nodejs version'
           command: node --version
         - name: 'Check npm version'