Remove support for PowerDNS 3 driver
... because it was deprecated during Wallaby cycle[1]. This also
removes some remaining implementations used for PowerDNS 3 driver
support.
[1] 5ce240bc4d
Change-Id: I611f6333d5d0f648ab07698fafead5558ba8ccd0
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
# == Class: designate::db::powerdns::mysql
|
||||
#
|
||||
# DEPRECATED !
|
||||
# Class that configures mysql for the designate PowerDNS backend.
|
||||
#
|
||||
# === Parameters:
|
||||
#
|
||||
# [*password*]
|
||||
# Password to use for the powerdns user
|
||||
#
|
||||
# [*dbname*]
|
||||
# (optional) The name of the database
|
||||
# Defaults to 'powerdns'
|
||||
#
|
||||
# [*user*]
|
||||
# (optional) The mysql user to create
|
||||
# Defaults to 'powerdns'
|
||||
#
|
||||
# [*host*]
|
||||
# (optional) The IP address of the mysql server
|
||||
# Defaults to '127.0.0.1'
|
||||
#
|
||||
# [*charset*]
|
||||
# (optional) The charset to use for the powerdns database
|
||||
# Defaults to 'utf8'
|
||||
#
|
||||
# [*collate*]
|
||||
# (optional) The collate to use for the powerdns database
|
||||
# Defaults to 'utf8_general_ci'
|
||||
#
|
||||
# [*allowed_hosts*]
|
||||
# (optional) Additional hosts that are allowed to access this DB
|
||||
# Defaults to undef
|
||||
#
|
||||
class designate::db::powerdns::mysql (
|
||||
$password,
|
||||
$dbname = 'powerdns',
|
||||
$user = 'powerdns',
|
||||
$host = '127.0.0.1',
|
||||
$charset = 'utf8',
|
||||
$collate = 'utf8_general_ci',
|
||||
$allowed_hosts = undef,
|
||||
) {
|
||||
|
||||
warning('The designate::db::powerdns::mysql class has been deprecaed \
|
||||
and has no effect. This class will be removed in a future release.')
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
#
|
||||
# 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.')
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user