From c5a86aa9fb59eddd3e083955f421cdbdce49cd51 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 28 Jan 2019 13:58:06 +0100 Subject: [PATCH] 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. --- roles/nodejs/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2