diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-11-21 20:48:11 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-11-21 20:48:11 -0200 |
commit | 143fb7a0ff118058c831bf9b2959b7f05a10d55d (patch) | |
tree | c82e900b735f2853ccdc6c6aa0df885c61b44b51 | |
parent | 4ae00704ae467ccab39e2b4c7cdf0940c3fb757c (diff) | |
download | puppet-user-143fb7a0ff118058c831bf9b2959b7f05a10d55d.tar.gz puppet-user-143fb7a0ff118058c831bf9b2959b7f05a10d55d.tar.bz2 |
Changing key type to RSA
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index bdae082..756e163 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -42,7 +42,7 @@ class user { } $real_sshkey_type = $sshkey_type ? { - 'absent' => "ssh-dss", + 'absent' => "ssh-rsa", default => $sshkey_type, } |