diff options
Diffstat (limited to 'puppet/modules/site_config')
-rw-r--r-- | puppet/modules/site_config/manifests/sshd.pp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/puppet/modules/site_config/manifests/sshd.pp b/puppet/modules/site_config/manifests/sshd.pp index 4834bb6f..944dbce2 100644 --- a/puppet/modules/site_config/manifests/sshd.pp +++ b/puppet/modules/site_config/manifests/sshd.pp @@ -1,8 +1,9 @@ class site_config::sshd { - # configure ssh and inculde ssh-keys + # configure sshd include sshd - $ssh_pubkeys=hiera_hash('ssh_pubkeys') include site_sshd - notice($ssh_pubkeys) - create_resources('site_sshd::ssh_key', $ssh_pubkeys) + # no need for configuring authorized_keys as leap_cli cares for that + #$ssh_pubkeys=hiera_hash('ssh_pubkeys') + #notice($ssh_pubkeys) + #create_resources('site_sshd::ssh_key', $ssh_pubkeys) } |