puppet-vitrage/manifests/db/sync.pp

35 lines
770 B
Puppet

#
# Class to execute vitrage-manage db_sync
#
# == Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the vitrage-dbsync command.
# Defaults to undef
#
class vitrage::db::sync(
$extra_params = undef,
) {
include ::vitrage::deps
exec { 'vitrage-db-sync':
command => "vitrage-dbsync ${extra_params}",
path => '/usr/bin',
user => 'vitrage',
refreshonly => true,
try_sleep => 5,
tries => 10,
logoutput => on_failure,
subscribe => [
Anchor['vitrage::install::end'],
Anchor['vitrage::config::end'],
Anchor['vitrage::dbsync::begin']
],
notify => Anchor['vitrage::dbsync::end'],
tag => 'openstack-db',
}
}