diff options
author | varac <varacanero@zeromail.org> | 2014-02-06 23:46:04 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-02-06 23:46:04 +0100 |
commit | 102a22ff35c8cf844a3eabeb213a508e658e47c2 (patch) | |
tree | ef8b0566b6213cfdbcdb6675696cfd2cc242c866 /puppet/modules | |
parent | f2580e5f504aaa2b763e838fc50705355990e98e (diff) |
add a comment why we use a custom way to populate authorized_keys
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_sshd/manifests/authorized_keys.pp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/puppet/modules/site_sshd/manifests/authorized_keys.pp b/puppet/modules/site_sshd/manifests/authorized_keys.pp index c18f691c..f36fe20f 100644 --- a/puppet/modules/site_sshd/manifests/authorized_keys.pp +++ b/puppet/modules/site_sshd/manifests/authorized_keys.pp @@ -1,4 +1,7 @@ define site_sshd::authorized_keys ($keys, $ensure = 'present', $home = '') { + # We use a custom define here to deploy the authorized_keys file + # cause puppet doesn't allow purgin before populating this file + # (see https://tickets.puppetlabs.com/browse/PUP-1174) # This line allows default homedir based on $title variable. # If $home is empty, the default is used. $homedir = $home ? {'' => "/home/${title}", default => $home} |