On non containerized deployment the ceph-mon hostname/fqdn systemd
service are stopped at the beginning of the mon upgrade.
But the parameter enabled is set to true for both task so even if we're
not using the fqdn then it will enabled the systemd unit based on it.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1649617
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
systemd:
name: ceph-mon@{{ ansible_hostname }}
state: stopped
- enabled: yes
+ enabled: no
ignore_errors: True
when:
- not containerized_deployment
systemd:
name: ceph-mon@{{ ansible_fqdn }}
state: stopped
- enabled: yes
+ enabled: no
ignore_errors: True
when:
- not containerized_deployment