Alex Schultz ce6682d5a9 Fix path for cinder-manage
When we run the db sync, grep is called in the process however it is not
found in the path as we are only setting /usr/bin

Change-Id: I9905e02958f715be1cfebaf73e0e93b65b267ef9
2019-03-18 07:28:45 -06:00

35 lines
870 B
Puppet

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