
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I31c023824e428ad0fc3dad30b4d3103aaa747597
37 lines
1.0 KiB
Puppet
37 lines
1.0 KiB
Puppet
#
|
|
# Class to execute ironic dbsync
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*extra_params*]
|
|
# (optional) String of extra command line parameters to append
|
|
# to the ironic-dbsync command.
|
|
# Defaults to undef
|
|
#
|
|
class ironic::db::sync(
|
|
$extra_params = undef,
|
|
) {
|
|
|
|
include ::ironic::deps
|
|
include ::ironic::params
|
|
|
|
exec { 'ironic-dbsync':
|
|
command => "${::ironic::params::dbsync_command} ${extra_params}",
|
|
path => '/usr/bin',
|
|
# Ubuntu packaging is running dbsync command as root during ironic-common
|
|
# postinstall script so when Puppet tries to run dbsync again, it fails
|
|
# because it is run with ironic user.
|
|
# This is a temporary patch until it's changed in Packaging
|
|
# https://bugs.launchpad.net/cloud-archive/+bug/1450942
|
|
user => 'root',
|
|
refreshonly => true,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['ironic::install::end'],
|
|
Anchor['ironic::config::end'],
|
|
Anchor['ironic::dbsync::begin']
|
|
],
|
|
notify => Anchor['ironic::dbsync::end'],
|
|
}
|
|
}
|