diff options
| author | varac <varacanero@zeromail.org> | 2012-10-30 15:14:06 +0100 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2012-10-30 15:14:06 +0100 | 
| commit | b4a32c98e5bd2184f6fc5fef1300e35ab36dbb99 (patch) | |
| tree | 84780e279c7738440e3685adc52bbb4a443e3cb0 | |
| parent | 9586f6ec95b6bdba7ca3df4135055f2cced9e972 (diff) | |
no need for configuring authorized_keys as leap_cli cares for that
| -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)  } | 
