diff options
| author | varac <varacanero@zeromail.org> | 2014-02-10 14:44:01 +0100 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2014-02-10 14:44:01 +0100 | 
| commit | 8054778e83fbc1f5a34dcaee4b364b8ded44dbab (patch) | |
| tree | 33d50eaf455be9552188f75a0fd4d05f24dd902a | |
| parent | 51feb301c35ede1262167dd26429fb98a9a6e65a (diff) | |
use default value for hiera lookup (#5118)
| -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 d2b13822..d2de41c8 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  | 
