summaryrefslogtreecommitdiffstats
path: root/roles/openshift_expand_partition/tasks/main.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-01-17 13:56:42 -0800
committerGitHub <noreply@github.com>2018-01-17 13:56:42 -0800
commit7e83e65fc7a76df0530a56e3f6e3897cb95c316d (patch)
tree337096dab9658fc7413af71b7a3eb6bb98c2050a /roles/openshift_expand_partition/tasks/main.yml
parentfba3c1c4f3ffc1f0341a20192d392f16bf7659f4 (diff)
parent1dc910c68f845022f8749708bf191907e11efc13 (diff)
downloadopenshift-7e83e65fc7a76df0530a56e3f6e3897cb95c316d.tar.gz
openshift-7e83e65fc7a76df0530a56e3f6e3897cb95c316d.tar.bz2
openshift-7e83e65fc7a76df0530a56e3f6e3897cb95c316d.tar.xz
openshift-7e83e65fc7a76df0530a56e3f6e3897cb95c316d.zip
Merge pull request #6751 from vrutkovs/apply-check-rc
Automatic merge from submit-queue. Check that rc != 0 for steps with 'failed_when' Some parts don't check the result rc at all, some check that 'error' is present there. Instead the safest way is to check for both Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1534538
Diffstat (limited to 'roles/openshift_expand_partition/tasks/main.yml')
-rw-r--r--roles/openshift_expand_partition/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_expand_partition/tasks/main.yml b/roles/openshift_expand_partition/tasks/main.yml
index 5ae863871..b38ebdfb4 100644
--- a/roles/openshift_expand_partition/tasks/main.yml
+++ b/roles/openshift_expand_partition/tasks/main.yml
@@ -8,7 +8,7 @@
- name: Determine if growpart is installed
command: "rpm -q cloud-utils-growpart"
register: has_growpart
- failed_when: has_growpart.cr != 0 and 'package cloud-utils-growpart is not installed' not in has_growpart.stdout
+ failed_when: has_growpart.rc != 0 and 'package cloud-utils-growpart is not installed' not in has_growpart.stdout
changed_when: false
when: openshift_is_containerized | bool