diff options
Diffstat (limited to 'roles/ands_common')
-rw-r--r-- | roles/ands_common/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |