]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
update: add missing quotes
authorGuillaume Abrioux <gabrioux@redhat.com>
Mon, 21 Oct 2019 12:22:58 +0000 (14:22 +0200)
committerDimitri Savineau <savineau.dimitri@gmail.com>
Mon, 21 Oct 2019 17:26:37 +0000 (13:26 -0400)
Add missing quote in order to keep consistency.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 8d72ff8e5e671f7db9ad39b123686acde1b45aa1)

infrastructure-playbooks/rolling_update.yml

index 4d42e5afdb00bb7026b733fcea1264be12738754..8fa9e6e1e05034d570a99840b9163f8c593a72ad 100644 (file)
 
     - name: stop standby ceph mds
       systemd:
-        name: ceph-mds@{{ hostvars[item]['ansible_hostname'] }}
+        name: "ceph-mds@{{ hostvars[item]['ansible_hostname'] }}"
         state: stopped
         enabled: no
       delegate_to: "{{ item }}"
     # somehow, having a single task doesn't work in containerized context
     - name: mask systemd units for standby ceph mds
       systemd:
-        name: ceph-mds@{{ hostvars[item]['ansible_hostname'] }}
+        name: "ceph-mds@{{ hostvars[item]['ansible_hostname'] }}"
         masked: yes
       delegate_to: "{{ item }}"
       with_items: "{{ groups['standby_mdss'] }}"