diff options
| author | elijah <elijah@riseup.net> | 2013-07-17 00:58:07 -0700 |
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2013-07-17 00:58:07 -0700 |
| commit | 3bfa6a7bd1cc9155155c50468a9bbe0769986920 (patch) | |
| tree | 64b37457aea92779e16d86f6875d508c02359b4b | |
| parent | dcc5ce71e219f292f54fcc60cf3ad1691d8c1816 (diff) | |
default to false for $hosts
| -rw-r--r-- | puppet/modules/site_config/manifests/hosts.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_config/manifests/hosts.pp b/puppet/modules/site_config/manifests/hosts.pp index ccedf036..a3ce0c1f 100644 --- a/puppet/modules/site_config/manifests/hosts.pp +++ b/puppet/modules/site_config/manifests/hosts.pp @@ -1,5 +1,5 @@ class site_config::hosts() { - $hosts = hiera('hosts','') + $hosts = hiera('hosts', false) $hostname = hiera('name') $domain_hash = hiera('domain') $domain_public = $domain_hash['full_suffix'] |
