diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-23 16:49:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-23 16:49:48 -0300 |
commit | 32e9a333a526b7e168467efc8aeec81574564b7d (patch) | |
tree | 85d65dc00666f8b56620348726af4d7dd8855ad1 | |
parent | 580143f20013437f01d1c38ba9438928a8f48897 (diff) | |
download | puppet-backup-32e9a333a526b7e168467efc8aeec81574564b7d.tar.gz puppet-backup-32e9a333a526b7e168467efc8aeec81574564b7d.tar.bz2 |
Change ssh_authorized_key key
-rw-r--r-- | manifests/user.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/user.pp b/manifests/user.pp index ab4150c..eb303cb 100644 --- a/manifests/user.pp +++ b/manifests/user.pp @@ -5,7 +5,7 @@ define backup::user( $sshkey = '', ) { $real_sshkey = $sshkey ? { - '' => hiera("compiled::ssh::key::${name}.${hosting_domain}"), + '' => hiera("ssh_authorized_key::${name}.${hosting_domain}"), default => $sshkey, } |