From a7f820171a5e7dd79fcfb1dd1a47efd10dc8c38d Mon Sep 17 00:00:00 2001 From: A Holt Date: Thu, 29 Oct 2020 22:10:50 -0400 Subject: [PATCH] Sugarizer: testing for Node.js version is overkill --- roles/sugarizer/tasks/install.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/sugarizer/tasks/install.yml b/roles/sugarizer/tasks/install.yml index 31301fbaf..8ffe973e9 100644 --- a/roles/sugarizer/tasks/install.yml +++ b/roles/sugarizer/tasks/install.yml @@ -20,10 +20,11 @@ msg: "Sugarizer install cannot proceed, as Node.js is not installed." when: nodejs_installed is undefined -- name: FAIL (STOP THE INSTALL) IF 'nodejs_version != "12.x"' - fail: - msg: "Sugarizer install cannot proceed, as it currently requires Node.js 12.x, whereas nodejs_version is set to {{ nodejs_version }}. Please check the value of nodejs_version in /opt/iiab/iiab/vars/default_vars.yml, /etc/iiab/local_vars.yml, /opt/iiab/iiab/roles/nodejs, etc." - when: nodejs_version != "12.x" +# 2020-10-29: No longer nec as Sugarizer works on most all versions of Node.js +#- name: FAIL (STOP THE INSTALL) IF 'nodejs_version != "12.x"' +# fail: +# msg: "Sugarizer install cannot proceed, as it currently requires Node.js 12.x, whereas nodejs_version is set to {{ nodejs_version }}. Please check the value of nodejs_version in /opt/iiab/iiab/vars/default_vars.yml, /etc/iiab/local_vars.yml, /opt/iiab/iiab/roles/nodejs, etc." +# when: nodejs_version != "12.x" # 2. DOWNLOAD+LINK /opt/iiab/sugarizer