puppet-neutron/manifests/db/sync.pp

35 lines
1002 B
Puppet

#
# Class to execute neutron dbsync
#
# ==Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the neutron-db-manage upgrade head command. These will be
# inserted in the command line between 'neutron-db-manage' and
# 'upgrade head'.
# Defaults to '--config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini'
#
class neutron::db::sync(
$extra_params = '--config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini',
) {
include ::neutron::deps
include ::neutron::params
exec { 'neutron-db-sync':
command => "neutron-db-manage ${extra_params} upgrade heads",
path => '/usr/bin',
refreshonly => true,
try_sleep => 5,
tries => 10,
logoutput => on_failure,
subscribe => [
Anchor['neutron::install::end'],
Anchor['neutron::config::end'],
Anchor['neutron::dbsync::begin']
],
notify => Anchor['neutron::dbsync::end'],
}
}