summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-03-01 22:40:43 +0100
committermh <mh@immerda.ch>2011-03-01 22:40:43 +0100
commit56a1d47b3e72c2acf83894ea12a944c604b1c094 (patch)
tree3974b5739f0d4ce41791d5e5cdb6e8071eb84662 /manifests/init.pp
parentbd9fa966f4bbd46693548a95d818adb3dc8ef3eb (diff)
downloadpuppet-ekeyd-56a1d47b3e72c2acf83894ea12a944c604b1c094.tar.gz
puppet-ekeyd-56a1d47b3e72c2acf83894ea12a944c604b1c094.tar.bz2
also do the client with a parametrized class and cleanup/finish the host part
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 83ee949..036ff82 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,13 +1,13 @@
class ekeyd(
- $ekey_host = false,
- $ekey_masterkey
+ $ekeyd_host = false,
+ $ekeyd_masterkey
){
if $ekeyd_key_present != 'true' { fail("Can't find an ekey key plugged into usb on ${fqdn}") }
include ekeyd::base
- if $ekey_host {
+ if $ekeyd_host {
case $operatingsystem {
centos: { include ekeyd::host::centos }
default: { include ekeyd::host::base }