Correct typo in manila/share.pp resource chaining

A typo error resulted in an attempted resource chaining of
Ceph::Key[client.manila] to Exec[exec-setfacl-manila-manila]. The
actual exec resource is Exec[exec-setfacl-manila]

Change-Id: I78eec6022211b0e82c06599dea300961a2309f0c
This commit is contained in:
Keith Schincke 2017-12-16 21:39:00 -05:00
parent 5f635d6e56
commit 65d226a925
1 changed files with 2 additions and 2 deletions

View File

@ -142,12 +142,12 @@ class tripleo::profile::base::manila::share (
"client.${cephfs_auth_id}/client mount gid": value => 0;
}
exec{ "exec-setfacl-${cephfs_auth_id}}":
exec{ "exec-setfacl-${cephfs_auth_id}":
path => ['/bin', '/usr/bin' ],
command => "setfacl -m u:manila:r-- ${keyring_path}",
unless => "getfacl ${keyring_path} | grep -q user:manila:r--",
}
Ceph::Key<| title == "client.${cephfs_auth_id}" |> -> Exec["exec-setfacl-${cephfs_auth_id}-manila"]
Ceph::Key<| title == "client.${cephfs_auth_id}" |> -> Exec["exec-setfacl-${cephfs_auth_id}"]
}
# manila netapp: