From 4a5d3c3c2d6bf4d1ad4828b7b462b5f5a2647d44 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 21 Oct 2019 14:22:58 +0200 Subject: [PATCH] update: add missing quotes Add missing quote in order to keep consistency. Signed-off-by: Guillaume Abrioux (cherry picked from commit 8d72ff8e5e671f7db9ad39b123686acde1b45aa1) --- infrastructure-playbooks/rolling_update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index 4d42e5afd..8fa9e6e1e 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -585,7 +585,7 @@ - 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 }}" @@ -596,7 +596,7 @@ # 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'] }}"