5f6411c3dd
Change-Id: I9982b8476ca9dab8a338b66db75d6da6519f9266
35 lines
883 B
Puppet
35 lines
883 B
Puppet
#
|
|
# Class to execute heat dbsync
|
|
#
|
|
# ==Parameters
|
|
#
|
|
# [*extra_params*]
|
|
# (Optional) String of extra command line parameters to append
|
|
# to the heat-manage db_sync command. These will be inserted
|
|
# in the command line between 'heat-manage' and 'db_sync'.
|
|
# Defaults to '--config-file /etc/heat/heat.conf'
|
|
#
|
|
class heat::db::sync(
|
|
$extra_params = '--config-file /etc/heat/heat.conf',
|
|
) {
|
|
|
|
include heat::deps
|
|
|
|
exec { 'heat-dbsync':
|
|
command => "heat-manage ${extra_params} db_sync",
|
|
path => '/usr/bin',
|
|
user => 'heat',
|
|
refreshonly => true,
|
|
try_sleep => 5,
|
|
tries => 10,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['heat::install::end'],
|
|
Anchor['heat::config::end'],
|
|
Anchor['heat::dbsync::begin']
|
|
],
|
|
notify => Anchor['heat::dbsync::end'],
|
|
tag => 'openstack-db',
|
|
}
|
|
}
|