From 6e03f4944b3b8fa64b9c790c0a336f334233166a Mon Sep 17 00:00:00 2001 From: KGoreczny Date: Tue, 16 Feb 2016 13:41:58 +0100 Subject: [PATCH] Unify quotation marks Signed-off-by: KGoreczny --- purge-cluster.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/purge-cluster.yml b/purge-cluster.yml index 54f8171c8..9d55bd95a 100644 --- a/purge-cluster.yml +++ b/purge-cluster.yml @@ -225,11 +225,11 @@ ansible_distribution == 'Ubuntu' - name: remove Upstart nad SysV files - shell: 'find /etc -name "*ceph*" -delete' + shell: "find /etc -name '*ceph*' -delete" when: ansible_distribution == 'Ubuntu' - name: remove Upstart and apt logs and cache - shell: 'find /var -name "*ceph*" -delete' + shell: "find /var -name '*ceph*' -delete" when: - ansible_distribution == 'Ubuntu' \ No newline at end of file + ansible_distribution == 'Ubuntu' -- 2.47.3