diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-30 10:21:54 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-06 11:20:13 -0400 |
commit | 17f2e835e31854300e63a17e6fee55f8ede1639b (patch) | |
tree | 11404e3d600aef23cb807222b99de47721980781 /playbooks | |
parent | 6cd266510dfa5423ae9af60ba191ff3aa1016100 (diff) | |
download | openshift-17f2e835e31854300e63a17e6fee55f8ede1639b.tar.gz openshift-17f2e835e31854300e63a17e6fee55f8ede1639b.tar.bz2 openshift-17f2e835e31854300e63a17e6fee55f8ede1639b.tar.xz openshift-17f2e835e31854300e63a17e6fee55f8ede1639b.zip |
Unmask services
Unmasking etcd is is important when switching from containerized installs to
RPM installs
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/adhoc/uninstall.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/playbooks/adhoc/uninstall.yml b/playbooks/adhoc/uninstall.yml index 680964d80..8fb515982 100644 --- a/playbooks/adhoc/uninstall.yml +++ b/playbooks/adhoc/uninstall.yml @@ -53,6 +53,14 @@ - pcsd failed_when: false + - name: unmask services + command: systemctl unmask "{{ item }}" + changed_when: False + failed_when: False + with_items: + - etcd + - firewalld + - name: Stop additional atomic services service: name={{ item }} state=stopped when: is_containerized | bool |