Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
- name: Install HTTPS transport for APT
apt:
pkg: apt-transport-https
state: installed
state: present
when: not apt_https_transport.stat.exists

- name: Install GPG
apt:
pkg: gnupg
state: installed
state: present

- name: Import the NodeSource GPG key into apt
apt_key:
Expand All @@ -41,5 +41,5 @@
apt:
pkg:
- nodejs
state: installed
state: present
update_cache: yes