Files
puppet-designate/manifests/db/powerdns/sync.pp
Nate Potter f5c5f88eed Allow customization of db sync command line
Add parameter to designate::db::sync class to allow end
users to add command line parameters to the db sync command.

Change-Id: Iae224e97d91ee24e0aae1b79330f0906ff516508
Partial-bug: #1472740
2015-11-14 14:43:35 +00:00

30 lines
758 B
Puppet

#
# Class to execute designate powerdns dbsync
#
# ==Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the designate-manage powerdns sync command. These will be
# inserted in the command line between 'designate-manage' and
# 'powerdns sync'.
# Defaults to undef
class designate::db::powerdns::sync(
$extra_params = undef,
) {
include ::designate::params
exec { 'designate-powerdns-dbsync':
command => "designate-manage ${extra_params} powerdns sync",
path => '/usr/bin',
user => 'root',
refreshonly => true,
logoutput => on_failure,
subscribe => Anchor['designate::config::end'],
notify => Anchor['designate::service::begin'],
}
}