diff options
| -rw-r--r-- | puppet/modules/site_config/manifests/hosts.pp | 2 | ||||
| -rw-r--r-- | puppet/modules/site_config/manifests/resolvconf.pp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/puppet/modules/site_config/manifests/hosts.pp b/puppet/modules/site_config/manifests/hosts.pp index 80619e33..a5f1b105 100644 --- a/puppet/modules/site_config/manifests/hosts.pp +++ b/puppet/modules/site_config/manifests/hosts.pp @@ -3,7 +3,7 @@ class site_config::hosts() {    $hosts = hiera('hosts','')    $hostname = hiera('name') -  $domain_public = $domain_hash['full_suffix'] +  $domain_public = $site_config::domain_hash['full_suffix']    file { "/etc/hostname":      ensure => present, diff --git a/puppet/modules/site_config/manifests/resolvconf.pp b/puppet/modules/site_config/manifests/resolvconf.pp index adecb838..b803f17e 100644 --- a/puppet/modules/site_config/manifests/resolvconf.pp +++ b/puppet/modules/site_config/manifests/resolvconf.pp @@ -11,7 +11,7 @@ class site_config::resolvconf {      ensure => absent;    } -  $domain_public = $domain_hash['full_suffix'] +  $domain_public = $site_config::domain_hash['full_suffix']    # 127.0.0.1:      caching-only local bind    # 87.118.100.175: http://server.privacyfoundation.de | 
