From 186e17d6ac40819546ca3d0b357f9a53dd91a2fb Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 15 Aug 2022 03:53:21 +0900 Subject: [PATCH] Fix reference to non-existing dns::params::owner ... to avoid the following warning message. Puppet (warning): Unknown variable: '::dns::params::owner'. Change-Id: I1a5c8226b8df6956276ac73a50c5699189f92c22 --- manifests/bind.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/bind.pp b/manifests/bind.pp index 9c1516e13..eaf797141 100644 --- a/manifests/bind.pp +++ b/manifests/bind.pp @@ -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]