aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/dhclient.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystem/dhclient.pp')
-rw-r--r--manifests/subsystem/dhclient.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/subsystem/dhclient.pp b/manifests/subsystem/dhclient.pp
index e67a6e8..e809f1a 100644
--- a/manifests/subsystem/dhclient.pp
+++ b/manifests/subsystem/dhclient.pp
@@ -1,7 +1,7 @@
class nodo::subsystem::dhclient(
- $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)
+ $ensure = lookup('nodo::subsystem::dhclient::ensure', undef, undef, 'present'),
+ $supersede_domain_name = lookup('nodo::subsystem::dhclient::supersede_domain_name', undef, undef, $::domain),
+ $supersede_domain_search = lookup('nodo::subsystem::dhclient::supersede_domain_search', undef, undef, $::domain)
) {
package { 'isc-dhcp-client':
ensure => $ensure,