From: Alexander Barton Date: Mon, 28 Jan 2019 12:58:06 +0000 (+0100) Subject: nodejs: Don't try to install "npm", its included in "nodejs" package X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=AnsibleRoles.git;a=commitdiff_plain;h=c5a86aa9fb59eddd3e083955f421cdbdce49cd51 nodejs: Don't try to install "npm", its included in "nodejs" package In the past "npm" was a separate package which depended on the "nodejs" package, but today, "npm" is included in the latter. --- diff --git a/roles/nodejs/tasks/main.yml b/roles/nodejs/tasks/main.yml index a417ec4..167a111 100644 --- a/roles/nodejs/tasks/main.yml +++ b/roles/nodejs/tasks/main.yml @@ -44,10 +44,10 @@ - nodejs - packages -- name: install "npm" +- name: install "nodejs" tags: - nodejs - packages apt: - name: npm + name: nodejs state: present