Files
puppet-keystone/manifests/db/sync.pp
Mike Dorman ea12fb2d54 Allow customization of db sync command line
Add $extra_params parameter to keystone::db::sync class to allow
end-users to add command line parameters to the db_sync command.

Change-Id: I3965a4d0d4974e7ee925c99207d4d6d4510a517f
Closes-bug: 1472740
2015-09-21 09:07:49 -06:00

27 lines
765 B
Puppet

#
# Class to execute "keystone-manage db_sync
#
# == Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the keystone-manage db_sync command. These will be
# inserted in the command line between 'keystone-manage' and
# 'db_sync' in the command line.
# Defaults to ''
#
class keystone::db::sync(
$extra_params = undef,
) {
exec { 'keystone-manage db_sync':
command => "keystone-manage ${extra_params} db_sync",
path => '/usr/bin',
user => 'keystone',
refreshonly => true,
subscribe => [Package['keystone'], Keystone_config['database/connection']],
require => User['keystone'],
}
Exec['keystone-manage db_sync'] ~> Service<| title == 'keystone' |>
}