diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 16:30:14 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 16:30:14 -0200 |
commit | 3955383bb6e89a3f9d26d5fd2df24cae37c2fa89 (patch) | |
tree | f64792dae61ccaf1b366da75fddf54ef56fb3a12 | |
parent | 400476ebc7f77e8e1f47eaf584c63b4d0c6805b9 (diff) | |
download | puppet-sshd-3955383bb6e89a3f9d26d5fd2df24cae37c2fa89.tar.gz puppet-sshd-3955383bb6e89a3f9d26d5fd2df24cae37c2fa89.tar.bz2 |
Using fqdn instead of hostname.domain
-rw-r--r-- | manifests/base.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index 50e0339..9aed1ba 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -13,7 +13,7 @@ class sshd::base { case $sshrsakey { '': { info("no sshrsakey on $fqdn") } default: { - @@sshkey{"$hostname.$domain": + @@sshkey{"$fqdn": tag => "fqdn", type => ssh-rsa, key => $sshrsakey, |