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/openshift_resource/tasks/command.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roles/openshift_resource/tasks/command.yml') diff --git a/roles/openshift_resource/tasks/command.yml b/roles/openshift_resource/tasks/command.yml index c8e8d04..2c51665 100644 --- a/roles/openshift_resource/tasks/command.yml +++ b/roles/openshift_resource/tasks/command.yml @@ -4,7 +4,7 @@ command: "oc get -n {{project}} {{resource}}" register: result failed_when: false - changed_when: (result | failed) + changed_when: result is failed - name: Detroy existing resources command: "oc delete -n {{project}} {{resource}}" @@ -13,5 +13,5 @@ - name: Executing command command: "oc -n {{ project }} {{ command }}" - when: (recreate|default(false)) or (result | changed) + when: (recreate|default(false)) or (result is changed) run_once: true -- cgit v1.2.3