diff options
-rw-r--r-- | manifests/base.pp | 2 | ||||
-rw-r--r-- | manifests/base/host.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index 465bc2a..b738899 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -14,7 +14,7 @@ class nodo::base { include nodo::subsystem::local # Apt module - #$apt = hiera('nodo::subsystem::apt', True) + #$apt = hiera('nodo::subsystem::apt', true) #if $apt == true { # include nodo::subsystem::apt #} diff --git a/manifests/base/host.pp b/manifests/base/host.pp index 80eb936..08ddcd9 100644 --- a/manifests/base/host.pp +++ b/manifests/base/host.pp @@ -15,7 +15,7 @@ class nodo::base::host { class { 'firewall': } # Time - $ntpdate = hiera('nodo::host::ntpdate', True) + $ntpdate = hiera('nodo::host::ntpdate', true) case $ntpdate { false: { class { 'ntp::timezone': } } default: { class { 'ntp::ntpdate': } } |