diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-04-05 16:26:28 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-04-05 16:26:28 -0300 |
commit | c91ad05b3d0ceac2ded0ff14d0e7cff5f6fe256e (patch) | |
tree | 3fedc244191a37dea83462145b55493f1b18f6b7 /manifests | |
parent | 261bb2139bba1d7b8be21776b9c06ba1fa241582 (diff) | |
download | puppet-nodo-c91ad05b3d0ceac2ded0ff14d0e7cff5f6fe256e.tar.gz puppet-nodo-c91ad05b3d0ceac2ded0ff14d0e7cff5f6fe256e.tar.bz2 |
Use supersede_domain_name and supersede_domain_search
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/dhclient.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/subsystem/dhclient.pp b/manifests/subsystem/dhclient.pp index 332dc34..1e714ab 100644 --- a/manifests/subsystem/dhclient.pp +++ b/manifests/subsystem/dhclient.pp @@ -1,6 +1,7 @@ class nodo::subsystem::dhclient( - $ensure = hiera('nodo::subsystem::dhclient::ensure', 'present'), - $supersede_domain = hiera('nodo::subsystem::dhclient::supersede_domain', $::domain) + $ensure = hiera('nodo::subsystem::dhclient::ensure', 'present'), + $supersede_domain_name = hiera('nodo::subsystem::dhclient::supersede_domain_name', $::domain) + $supersede_domain_search = hiera('nodo::subsystem::dhclient::supersede_domain_search', $::domain) ) { package { 'isc-dhcp-client': ensure => $ensure, |