From 1dedf30fddc61b2f9793fb431bc0044c2d7c17ae Mon Sep 17 00:00:00 2001 From: Giulio Fidente Date: Sun, 6 May 2018 11:14:52 +0200 Subject: [PATCH] Do not overescape the Manila keyring caps Recent changes [1] [2] in ceph-ansible break old way of escaping quotes in the Manila keyring caps. 1. https://github.com/ceph/ceph-ansible/commit/82ccbdafbcbba788cc46b8ef4166600ff80b5729 2. https://github.com/ceph/ceph-ansible/commit/424815501a0c6072234a8e1311a0fefeb5bcc222 Change-Id: I7ff5df0e602aff000c9a4213231b7abc68871fc4 Closes-Bug: 1769436 --- 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 94a6676b4b..c0582cf9f0 100644 --- a/docker/services/ceph-ansible/ceph-base.yaml +++ b/docker/services/ceph-ansible/ceph-base.yaml @@ -273,7 +273,7 @@ resources: - {get_param: ManilaCephFSNativeCephFSAuthId} key: {get_param: CephManilaClientKey} mgr_cap: "allow *" - mon_cap: 'allow r, allow command \\\"auth del\\\", allow command \\\"auth caps\\\", allow command \\\"auth get\\\", allow command \\\"auth get-or-create\\\"' + mon_cap: 'allow r, allow command \"auth del\", allow command \"auth caps\", allow command \"auth get\", allow command \"auth get-or-create\"' mds_cap: "allow *" osd_cap: "allow rw" mode: "0600"