keyring permissions: fix PATH

PATH needs to include:
- /usr/sbin and /usr/bin
- /sbin and /bin

for running grep and groups commands.

Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>
This commit is contained in:
Emilien Macchi
2014-04-26 15:29:26 +02:00
parent f8de2fb334
commit d894d334ec
4 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ define cloud::volume::backend::rbd (
ensure_resource ('exec','add-cinder-to-group', {
'command' => 'usermod -a -G cephkeyring cinder',
'path' => ['/usr/sbin', '/sbin'],
'path' => ['/usr/sbin', '/usr/bin', '/bin', '/sbin'],
'unless' => 'groups cinder | grep cephkeyring'
})