Fix reference to non-existing dns::params::owner

... to avoid the following warning message.

Puppet (warning): Unknown variable: '::dns::params::owner'.

Change-Id: I1a5c8226b8df6956276ac73a50c5699189f92c22
This commit is contained in:
Takashi Kajinami 2022-08-15 03:53:21 +09:00
parent ef9c0eaecf
commit 186e17d6ac

View File

@ -23,7 +23,7 @@ class openstack_integration::bind {
# Contribute this in upstream ::dns ?
file { '/etc/rndc.conf':
ensure => present,
owner => $::dns::params::owner,
owner => $::dns::params::user,
group => $::dns::params::group,
content => template("${module_name}/rndc.conf.erb"),
require => Package[$dns::params::dns_server_package]