diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-08-05 16:16:04 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-08-05 16:16:04 -0300 |
commit | 47f826cfda8e0d5ee5025294b1a6c3352d6e74dc (patch) | |
tree | 5e5fde9ae4494d90d7ba4dc5e5649ad0cd587840 | |
parent | 277ae104d892fef0b9a6f38373461ed602ebb52b (diff) | |
download | puppet-nodo-47f826cfda8e0d5ee5025294b1a6c3352d6e74dc.tar.gz puppet-nodo-47f826cfda8e0d5ee5025294b1a6c3352d6e74dc.tar.bz2 |
Adding more subsystems into nodo::plug
-rw-r--r-- | manifests/plug.pp | 12 |
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', + } } |