Files
puppet-designate/manifests/backend/bind9.pp
Xingchao Yu 77f6823b31 Fix lint error and warnings
use rake lint fix existing errors and warnings
2013-10-18 16:18:57 +08:00

17 lines
493 B
Puppet

# Configure bind9 as backend
class designate::backend::bind9 (
$rndc_host = '127.0.0.1',
$rndc_port = '953',
$rndc_config_file = '/etc/rndc.conf',
$rndc_key_file = '/etc/rndc.key'
) {
designate_config {
'backend:bind9/rndc_host' : value => $rndc_host;
'backend:bind9/rndc_port' : value => $rndc_port;
'backend:bind9/rndc_config_file' : value => $rndc_config_file;
'backend:bind9/rndc_key_file' : value => $rndc_key_file;
}
}