This is a change I miss to commit as part of
dbba0aa4c389e717f043d50d5653d7ac1cb34011
Issue-ID: CIMAN-33
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Change-Id: Ic64fdc1458ee497eca31afd90ee8624988f88531
become: true
when: ansible_distribution == 'Ubuntu'
- - name: Install nodejs-dev dep for npm
+ - name: Install nodejs-dev libssl1.0-dev dep
apt:
name:
- - nodejs-dev
+ - libssl1.0-dev
update_cache: yes
state: fixed
become: true
- when: ansible_distribution == 'Ubuntu'
+ when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
- - name: Install nodejs-dev libssl1.0-dev dep
+ - name: Install nodejs-dev dep for npm
apt:
name:
- - libssl1.0-dev
+ - nodejs-dev
update_cache: yes
state: fixed
become: true
- when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
+ when: ansible_distribution == 'Ubuntu'
- name: Install supporting packages
apt: