Files
puppet-designate/manifests/db/powerdns/sync.pp
Takashi Kajinami 5ce240bc4d Deprecate support for configuration of powerdns 3 driver
... because it was removed from designate[1]

[1] 660eacbce4b1a4a409cd084a9c9f6e6e8f5e581a

Change-Id: I8a1861afc2c74fd52836e4b5955bc6bdd929fbf6
2020-11-25 20:56:10 +09:00

21 lines
549 B
Puppet

#
# DEPRECATED !!
# 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,
) {
warning('The designate::db::powerdns::sync class has been deprecaed \
and has no effect. This class will be removed in a future release.')
}