puppet-murano/manifests/db/sync_cfapi.pp
ZhongShengping 49ab8921ca Add deps to all that is needed
1) Add deps to all that is needed.
2) Remove useless hooks
3) Update releated spec tests.

Change-Id: Ic69d8af5f28f5ccb6d0439ef3189522b8ab40b92
2016-12-16 09:39:15 +08:00

26 lines
589 B
Puppet

#
# Class to execute murano_cfapi dbsync
#
class murano::db::sync_cfapi {
include ::murano::deps
include ::murano::params
exec { 'murano-cfapi-dbmanage':
command => $::murano::params::cfapi_dbmanage_command,
path => '/usr/bin',
user => 'murano_cfapi',
refreshonly => true,
try_sleep => 5,
tries => 10,
logoutput => on_failure,
subscribe => [
Anchor['murano::install::end'],
Anchor['murano::config::end'],
Anchor['murano::dbsync::begin']
],
notify => Anchor['murano::dbsync::end'],
}
}