diff options
author | varac <varacanero@zeromail.org> | 2012-10-12 14:44:05 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-10-12 14:44:05 +0200 |
commit | 082efdddf4b5a4c741a655e6833b8d86bb717303 (patch) | |
tree | 09b4282913cc499f71f32269bc372cddd34ae050 /puppet | |
parent | df1cb1b7445adcabbe355290d1e720040b916f6b (diff) |
ssh_keys -> ssh_pubkeys for clarity
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/modules/site_config/manifests/sshd.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/puppet/modules/site_config/manifests/sshd.pp b/puppet/modules/site_config/manifests/sshd.pp index 8e33ca7f..4834bb6f 100644 --- a/puppet/modules/site_config/manifests/sshd.pp +++ b/puppet/modules/site_config/manifests/sshd.pp @@ -1,8 +1,8 @@ class site_config::sshd { # configure ssh and inculde ssh-keys include sshd - $ssh_keys=hiera_hash('ssh_keys') + $ssh_pubkeys=hiera_hash('ssh_pubkeys') include site_sshd - notice($ssh_keys) - create_resources('site_sshd::ssh_key', $ssh_keys) + notice($ssh_pubkeys) + create_resources('site_sshd::ssh_key', $ssh_pubkeys) } |