diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 15:33:35 -0200 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 15:33:35 -0200 | 
| commit | 400476ebc7f77e8e1f47eaf584c63b4d0c6805b9 (patch) | |
| tree | b3b85f62d1b1fc7c9cfac0d842a79d1eb1088768 /manifests/base.pp | |
| parent | 1fd1d896a024a860bef7fa6c3b622df71e4a8017 (diff) | |
| download | puppet-sshd-400476ebc7f77e8e1f47eaf584c63b4d0c6805b9.tar.gz puppet-sshd-400476ebc7f77e8e1f47eaf584c63b4d0c6805b9.tar.bz2  | |
Using sshrsakey instead of sshrsakey_key
Diffstat (limited to 'manifests/base.pp')
| -rw-r--r-- | manifests/base.pp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index 76203ee..50e0339 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -10,13 +10,13 @@ class sshd::base {    }    # Now add the key, if we've got one -  case $sshrsakey_key { +  case $sshrsakey {      '': { info("no sshrsakey on $fqdn") }      default: {        @@sshkey{"$hostname.$domain":          tag    => "fqdn",          type   => ssh-rsa, -        key    => $sshrsakey_key, +        key    => $sshrsakey,          ensure => present,        }        # In case the node has an internal network address,  | 
