]> arthur.barton.de Git - AnsibleRoles.git/commitdiff
nodejs: Don't try to install "npm", its included in "nodejs" package
authorAlexander Barton <alex@barton.de>
Mon, 28 Jan 2019 12:58:06 +0000 (13:58 +0100)
committerAlexander Barton <alex@barton.de>
Mon, 28 Jan 2019 12:58:06 +0000 (13:58 +0100)
In the past "npm" was a separate package which depended on the "nodejs"
package, but today, "npm" is included in the latter.

roles/nodejs/tasks/main.yml

index a417ec4f1a4328ec729b6fc1feaab12de1ce5861..167a111930b7299631e9291155ba97f6628c3c6f 100644 (file)
     - nodejs
     - packages
 
-- name: install "npm"
+- name: install "nodejs"
   tags:
     - nodejs
     - packages
   apt:
-    name: npm
+    name: nodejs
     state: present