Parcourir la source

Fix a typo in "Determine if growpart is installed"

Vadim Rutkovsky il y a 7 ans
Parent
commit
1dc910c68f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      roles/openshift_expand_partition/tasks/main.yml

+ 1 - 1
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