puppet-cinder/manifests/db/sync.pp
Nate Potter 8a1e5f96b3 Allow customization of db sync command line
Add parameter to cinder::db::sync class to allow
end users to add command line parameters to the db sync command.

Change-Id: I34d9de89aae007d6b9f8644a8ba936bc0cf0c04c
Partial-bug: #1472740
2015-11-03 16:48:11 +00:00

33 lines
880 B
Puppet

#
# Class to execute cinder dbsync
#
# == Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the cinder-manage db sync command. These will be inserted
# in the command line between 'cinder-manage' and 'db sync'.
# Defaults to undef
#
class cinder::db::sync(
$extra_params = undef,
) {
include ::cinder::params
Package <| tag == 'cinder-package' |> ~> Exec['cinder-manage db_sync']
Exec['cinder-manage db_sync'] ~> Service <| tag == 'cinder-service' |>
Cinder_config <||> ~> Exec['cinder-manage db_sync']
Cinder_config <| title == 'database/connection' |> ~> Exec['cinder-manage db_sync']
exec { 'cinder-manage db_sync':
command => "cinder-manage ${extra_params} db sync",
path => '/usr/bin',
user => 'cinder',
refreshonly => true,
logoutput => 'on_failure',
}
}