Fix: Replace nodejs-dev with libnode-dev on 20.04 Ubuntu
[ci-management.git] / packer / provision / local-builder.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: