summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2012-10-12 14:44:05 +0200
committervarac <varacanero@zeromail.org>2012-10-12 14:44:05 +0200
commit082efdddf4b5a4c741a655e6833b8d86bb717303 (patch)
tree09b4282913cc499f71f32269bc372cddd34ae050
parentdf1cb1b7445adcabbe355290d1e720040b916f6b (diff)
ssh_keys -> ssh_pubkeys for clarity
-rw-r--r--puppet/modules/site_config/manifests/sshd.pp6
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)
}