diff options
-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', + } } |