puppet-tacker/manifests/db/sync.pp

40 lines
948 B
Puppet

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