6ae2ec65fa
Make sure documentation is the same and follow the standard which we are trying to enforce on all modules. Change-Id: I7eb7513cd41eb3b1af77865574db0be42dcd2684
31 lines
660 B
Puppet
31 lines
660 B
Puppet
#
|
|
# Class to execute "aodh-dbsync"
|
|
#
|
|
# [*user*]
|
|
# (Optional) User to run dbsync command.
|
|
# Defaults to 'aodh'
|
|
#
|
|
class aodh::db::sync (
|
|
$user = 'aodh',
|
|
){
|
|
|
|
include ::aodh::deps
|
|
|
|
exec { 'aodh-db-sync':
|
|
command => 'aodh-dbsync --config-file /etc/aodh/aodh.conf',
|
|
path => '/usr/bin',
|
|
refreshonly => true,
|
|
user => $user,
|
|
try_sleep => 5,
|
|
tries => 10,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['aodh::install::end'],
|
|
Anchor['aodh::config::end'],
|
|
Anchor['aodh::dbsync::begin']
|
|
],
|
|
notify => Anchor['aodh::dbsync::end'],
|
|
tag => 'openstack-db',
|
|
}
|
|
}
|