
These entries should be removed from the manifests as these settings should be delivered by packaging tools. Change-Id: I0fb78afeb3b78b66d9f20542f0465116ff531483 Closes-Bug: #1458915
15 lines
305 B
Puppet
15 lines
305 B
Puppet
#
|
|
class cinder::db::sync {
|
|
|
|
include ::cinder::params
|
|
|
|
exec { 'cinder-manage db_sync':
|
|
command => $::cinder::params::db_sync_command,
|
|
path => '/usr/bin',
|
|
user => 'cinder',
|
|
refreshonly => true,
|
|
require => Class['cinder'],
|
|
logoutput => 'on_failure',
|
|
}
|
|
}
|