aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-01-29 10:27:49 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-01-29 10:27:49 -0200
commit92581cfacd3fe84109dce61faa333670d26b2f79 (patch)
treedd5c42bd073c2e72ca363be8fe1c804e76ffea4d /manifests
parentc03dfc8bf837847d29490c1fde196bcdf5acc9f1 (diff)
downloadpuppet-nodo-92581cfacd3fe84109dce61faa333670d26b2f79.tar.gz
puppet-nodo-92581cfacd3fe84109dce61faa333670d26b2f79.tar.bz2
Adding ekeyd support
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp1
-rw-r--r--manifests/physical.pp5
2 files changed, 6 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 94a6ac1..657efa3 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -41,6 +41,7 @@ import "autossh"
import "nagios"
import "mail"
import "shorewall"
+import "ekeyd"
# Import subsystems
import "subsystems/firewall.pp"
diff --git a/manifests/physical.pp b/manifests/physical.pp
index fa58884..91bbce2 100644
--- a/manifests/physical.pp
+++ b/manifests/physical.pp
@@ -63,4 +63,9 @@ class nodo::physical inherits nodo {
ensure => directory,
mode => 0755,
}
+
+ # Entropy key
+ if $ekey_masterkey != '' {
+ include ekeyd
+ }
}