aboutsummaryrefslogtreecommitdiff
path: root/manifests/plug.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-08-05 16:16:04 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-08-05 16:16:04 -0300
commit47f826cfda8e0d5ee5025294b1a6c3352d6e74dc (patch)
tree5e5fde9ae4494d90d7ba4dc5e5649ad0cd587840 /manifests/plug.pp
parent277ae104d892fef0b9a6f38373461ed602ebb52b (diff)
downloadpuppet-nodo-47f826cfda8e0d5ee5025294b1a6c3352d6e74dc.tar.gz
puppet-nodo-47f826cfda8e0d5ee5025294b1a6c3352d6e74dc.tar.bz2
Adding more subsystems into nodo::plug
Diffstat (limited to 'manifests/plug.pp')
-rw-r--r--manifests/plug.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/plug.pp b/manifests/plug.pp
index 354a9d6..efe4eb3 100644
--- a/manifests/plug.pp
+++ b/manifests/plug.pp
@@ -3,6 +3,8 @@ class nodo::plug inherits nodo {
include ntpdate
include syslog-ng
include utils::plug
+ include firewall
+ include sysctl
backupninja::sys { "sys":
ensure => present,
@@ -10,4 +12,14 @@ class nodo::plug inherits nodo {
# Monkeysphere configuration
monkeysphere_host { "$hostname": }
+
+ # DNS resolver
+ $resolvconf_domain = "$domain"
+ $resolvconf_search = "$fqdn"
+ include resolvconf
+
+ # Munin configuration
+ munin_node { "$hostname":
+ port => '4900',
+ }
}