fix usermod path

In a previous patch, path was set to /usr/bin but usermod is in
/usr/sbin.

Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>
This commit is contained in:
Emilien Macchi 2014-04-26 14:53:50 +02:00
parent 78c40dfe52
commit faaa9ffb4b
4 changed files with 5 additions and 3 deletions

View File

@ -147,6 +147,7 @@ Host *
ensure_resource ('exec','add-nova-to-group', {
'command' => 'usermod -a -G cephkeyring nova',
'path' => ['/usr/sbin', '/sbin'],
'unless' => 'groups nova | grep cephkeyring'
})

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/bin', '/bin'],
'path' => ['/usr/sbin', '/sbin'],
'unless' => 'groups cinder | grep cephkeyring'
})

View File

@ -239,7 +239,8 @@ describe 'cloud::compute::hypervisor' do
should contain_group('cephkeyring').with(:ensure => 'present')
should contain_exec('add-nova-to-group').with(
:command => 'usermod -a -G cephkeyring nova',
:unless => 'groups nova | grep cephkeyring'
:unless => 'groups nova | grep cephkeyring',
:path => ['/usr/sbin', '/sbin']
)
end

View File

@ -111,7 +111,7 @@ describe 'cloud::volume::storage' do
should contain_group('cephkeyring').with(:ensure => 'present')
should contain_exec('add-cinder-to-group').with(
:command => 'usermod -a -G cephkeyring cinder',
:path => ['/usr/bin', '/bin'],
:path => ['/usr/sbin', '/sbin'],
:unless => 'groups cinder | grep cephkeyring'
)
end