puppet-cinder/manifests/db/sync.pp

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',
}
}