From 0c7e7454ea1d83ba0f091f05cfeb1ba28dd880f0 Mon Sep 17 00:00:00 2001 From: John Fulton Date: Sat, 16 Jun 2018 14:51:47 +0000 Subject: [PATCH] Remove unecessary back-slashes in CephManilaClientKey caps mon Within the double-quoted capability string replace back-slashed double quotes with single quotes. Change-Id: Iff6e8f52c28a2de826e1582775727df85384b696 Closes-Bug: #1777249 --- docker/services/ceph-ansible/ceph-base.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/services/ceph-ansible/ceph-base.yaml b/docker/services/ceph-ansible/ceph-base.yaml index 378ebc4008..4957e5e76f 100644 --- a/docker/services/ceph-ansible/ceph-base.yaml +++ b/docker/services/ceph-ansible/ceph-base.yaml @@ -282,7 +282,7 @@ resources: key: {get_param: CephManilaClientKey} caps: mgr: "allow *" - mon: 'allow r, allow command \"auth del\", allow command \"auth caps\", allow command \"auth get\", allow command \"auth get-or-create\"' + mon: "allow r, allow command 'auth del', allow command 'auth caps', allow command 'auth get', allow command 'auth get-or-create'" mds: "allow *" osd: "allow rw" mode: "0600"