18b010975c
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: If683fbd098e701a3c4da91941cf818b18b41b209
34 lines
892 B
Puppet
34 lines
892 B
Puppet
#
|
|
# Class to execute glance dbsync
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*extra_params*]
|
|
# (optional) String of extra command line parameters to append
|
|
# to the glance-manage db sync command. These will be inserted
|
|
# in the command line between 'glance-manage' and 'db sync'.
|
|
# Defaults to '--config-file /etc/glance/glance-registry.conf'
|
|
#
|
|
class glance::db::sync(
|
|
$extra_params = '--config-file /etc/glance/glance-registry.conf',
|
|
) {
|
|
|
|
include ::glance::deps
|
|
include ::glance::params
|
|
|
|
exec { 'glance-manage db_sync':
|
|
command => "glance-manage ${extra_params} db_sync",
|
|
path => '/usr/bin',
|
|
user => 'glance',
|
|
refreshonly => true,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['glance::install::end'],
|
|
Anchor['glance::config::end'],
|
|
Anchor['glance::dbsync::begin']
|
|
],
|
|
notify => Anchor['glance::dbsync::end'],
|
|
}
|
|
|
|
}
|