942f25213e58a6d4099adbdb2ae186c4656b02e6
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / manifests / db / sync.pp
1 #
2 class cinder::db::sync {
3
4   include cinder::params
5
6   exec { 'cinder-manage db_sync':
7     command     => $::cinder::params::db_sync_command,
8     path        => '/usr/bin',
9     user        => 'cinder',
10     refreshonly => true,
11     require     => [File[$::cinder::params::cinder_conf], Class['cinder']],
12     logoutput   => 'on_failure',
13   }
14 }