diff options
-rw-r--r-- | manifests/base/plug.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/base/plug.pp b/manifests/base/plug.pp index 9ef4a08..6add09c 100644 --- a/manifests/base/plug.pp +++ b/manifests/base/plug.pp @@ -9,10 +9,18 @@ class nodo::base::plug { class { [ 'ntpdate', 'firewall' ]: } + # Backup backupninja::sys { "sys": ensure => present, } + # Monitoring + if !defined(Class['nodo::subsystem::monitor']) { + class { 'nodo::subsystem::monitor': + type => 'host', + } + } + # Munin configuration munin_node { "${::hostname}": port => '4900', |