diff options
author | varac <varacanero@zeromail.org> | 2014-02-10 14:44:01 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-02-13 17:13:04 +0100 |
commit | c1d1d9d7cf6fefd1203cc09a66c2e0230b930b5e (patch) | |
tree | cdacb4408633076fde04213fd27a48aa6c990a2e /puppet/modules/site_sshd/manifests | |
parent | 234d9fdf88d95db79c9d5983af8e0c318edb28c7 (diff) |
use default value for hiera lookup (#5118)
Diffstat (limited to 'puppet/modules/site_sshd/manifests')
-rw-r--r-- | puppet/modules/site_sshd/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_sshd/manifests/init.pp b/puppet/modules/site_sshd/manifests/init.pp index 2bcde603..d9bc1d51 100644 --- a/puppet/modules/site_sshd/manifests/init.pp +++ b/puppet/modules/site_sshd/manifests/init.pp @@ -1,6 +1,6 @@ class site_sshd { $ssh = hiera_hash('ssh') - $hosts = hiera_hash('hosts') + $hosts = hiera('hosts', '') ## ## SETUP AUTHORIZED KEYS |