From 59aec67a559773525a5525c588a3ae22d2466c57 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 14 Jul 2018 12:11:50 -0400 Subject: [PATCH] Update main.yml --- roles/sugarizer/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/sugarizer/tasks/main.yml b/roles/sugarizer/tasks/main.yml index 3b4df747c..2edffb9bd 100644 --- a/roles/sugarizer/tasks/main.yml +++ b/roles/sugarizer/tasks/main.yml @@ -69,11 +69,11 @@ when: internet_available and is_debuntu and not is_ubuntu_18 #- name: Install Node.js and npm (ubuntu-18) -- name: Install Node.js and npm (ubuntu-18 or not is_debuntu) +- name: Install Node.js and npm (ubuntu-18 or not debuntu) package: name: "{{ item }}" state: latest - when: internet_available and (is_ubuntu_18 or (not is_debuntu)) + when: internet_available and (is_ubuntu_18 or not is_debuntu) with_items: - nodejs - npm @@ -152,7 +152,7 @@ enabled: yes state: restarted with_items: -# - { name: mongodb } # 2018-07-14: NICE TRY, but still doesn't bring http://box:8089 to life reliably, as a reboot does usually does! (Is a daemon-reload or some such nec?) +# - { name: mongodb } # 2018-07-14: NICE TRY, but still doesn't bring http://box:8089 to life reliably, as a reboot usually does! (Is a daemon-reload or some such nec?) - { name: sugarizer } when: sugarizer_enabled