From b87109ff07443670a0c9ad0ab8ddfda548fa16c5 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 25 Feb 2021 02:59:50 +0100 Subject: Some changes of syntactic sugar for Ansible 3.9 compatibility --- roles/ands_common/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles/ands_common') diff --git a/roles/ands_common/tasks/main.yml b/roles/ands_common/tasks/main.yml index 4027b7a..38f7059 100644 --- a/roles/ands_common/tasks/main.yml +++ b/roles/ands_common/tasks/main.yml @@ -33,7 +33,7 @@ # We always update on first install and if requested - name: Update CentOS yum: name=* state=latest update_cache=yes - when: (result | changed) or (os_update | default(false)) + when: (result is changed) or (os_update | default(false)) #- name: Add NodeJS required by a few used Ansible extensions # package: name={{item}} state=present -- cgit v1.2.3