puppet-rally/manifests/db/sync.pp

37 lines
940 B
Puppet

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