summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cfme/tasks/uninstall.yml
diff options
context:
space:
mode:
authorScott Weiss <sdw35@cornell.edu>2017-08-03 12:21:07 -0400
committerScott Weiss <sdw35@cornell.edu>2017-08-03 15:18:56 -0400
commit596abe006140c2a1bd125aca11754ed3b7ba548d (patch)
tree37ca88dbd95d98b01fcd8d743eb4d9d9eae1b2a9 /roles/openshift_cfme/tasks/uninstall.yml
parent05a9c91735cc95457411dbb19951341e5418df18 (diff)
downloadopenshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.gz
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.bz2
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.xz
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.zip
nfs only run if cloud_provider not defined
Diffstat (limited to 'roles/openshift_cfme/tasks/uninstall.yml')
-rw-r--r--roles/openshift_cfme/tasks/uninstall.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/openshift_cfme/tasks/uninstall.yml b/roles/openshift_cfme/tasks/uninstall.yml
index cba734a0e..406b59364 100644
--- a/roles/openshift_cfme/tasks/uninstall.yml
+++ b/roles/openshift_cfme/tasks/uninstall.yml
@@ -25,6 +25,7 @@
kind: pv
name: "{{ item }}"
with_items: "{{ openshift_cfme_pv_exports }}"
+ when: not (openshift_cloudprovider_kind is defined and (openshift_cloudprovider_kind == 'aws' or openshift_cloudprovider_kind == 'gce'))
- name: Ensure the CFME user is removed
oc_user:
@@ -36,8 +37,10 @@
path: /etc/exports.d/openshift_cfme.exports
state: absent
register: nfs_exports_removed
+ when: not (openshift_cloudprovider_kind is defined and (openshift_cloudprovider_kind == 'aws' or openshift_cloudprovider_kind == 'gce'))
- name: Ensure the NFS export table is refreshed if exports were removed
command: exportfs -ar
when:
- nfs_exports_removed.changed
+ - not (openshift_cloudprovider_kind is defined and (openshift_cloudprovider_kind == 'aws' or openshift_cloudprovider_kind == 'gce'))