[FUEL-394] fix exec issue

This commit is contained in:
Vladimir Kuklin 2013-01-17 19:52:21 +04:00
parent a229679189
commit 5583750eaf
2 changed files with 8 additions and 8 deletions

View File

@ -91,12 +91,4 @@ if $cinder_rate_limits {
'keystone_authtoken/signing_dirname': value => '/tmp/keystone-signing-cinder';
}
}
exec { 'cinder-manage db_sync':
command => $::cinder::params::db_sync_command,
path => '/usr/bin',
user => 'cinder',
refreshonly => true,
logoutput => 'on_failure',
}
}

View File

@ -77,5 +77,13 @@ if $use_syslog {
'DEFAULT/verbose': value => $verbose;
'DEFAULT/api_paste_config': value => '/etc/cinder/api-paste.ini';
}
exec { 'cinder-manage db_sync':
command => $::cinder::params::db_sync_command,
path => '/usr/bin',
user => 'cinder',
refreshonly => true,
logoutput => 'on_failure',
}
}