
- This changes the puppet-lint requirement to 1.1.x, so that we can use puppet-lint plugins. Most of these plugins are for 4.x compat, but some just catch common errors. Change-Id: Ie7e1f8b4d4cdd5d058b95cdf2c29c80dc73b954c Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
15 lines
345 B
Puppet
15 lines
345 B
Puppet
#
|
|
class manila::db::sync {
|
|
|
|
include ::manila::params
|
|
|
|
exec { 'manila-manage db_sync':
|
|
command => $::manila::params::db_sync_command,
|
|
path => '/usr/bin',
|
|
user => 'manila',
|
|
refreshonly => true,
|
|
require => [File[$::manila::params::manila_conf], Class['manila']],
|
|
logoutput => 'on_failure',
|
|
}
|
|
}
|