mirror of https://github.com/ceph/ceph-ansible.git
update: add missing quotes
Add missing quote in order to keep consistency. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/4640/head
parent
25b98b2ce3
commit
8d72ff8e5e
|
@ -585,7 +585,7 @@
|
||||||
|
|
||||||
- name: stop standby ceph mds
|
- name: stop standby ceph mds
|
||||||
systemd:
|
systemd:
|
||||||
name: ceph-mds@{{ hostvars[item]['ansible_hostname'] }}
|
name: "ceph-mds@{{ hostvars[item]['ansible_hostname'] }}"
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: no
|
enabled: no
|
||||||
delegate_to: "{{ item }}"
|
delegate_to: "{{ item }}"
|
||||||
|
@ -596,7 +596,7 @@
|
||||||
# somehow, having a single task doesn't work in containerized context
|
# somehow, having a single task doesn't work in containerized context
|
||||||
- name: mask systemd units for standby ceph mds
|
- name: mask systemd units for standby ceph mds
|
||||||
systemd:
|
systemd:
|
||||||
name: ceph-mds@{{ hostvars[item]['ansible_hostname'] }}
|
name: "ceph-mds@{{ hostvars[item]['ansible_hostname'] }}"
|
||||||
masked: yes
|
masked: yes
|
||||||
delegate_to: "{{ item }}"
|
delegate_to: "{{ item }}"
|
||||||
with_items: "{{ groups['standby_mdss'] }}"
|
with_items: "{{ groups['standby_mdss'] }}"
|
||||||
|
|
Loading…
Reference in New Issue