summaryrefslogtreecommitdiff
path: root/files/puppet/modules/custom/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'files/puppet/modules/custom/manifests/init.pp')
-rw-r--r--files/puppet/modules/custom/manifests/init.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/files/puppet/modules/custom/manifests/init.pp b/files/puppet/modules/custom/manifests/init.pp
index 983ca42..0a67491 100644
--- a/files/puppet/modules/custom/manifests/init.pp
+++ b/files/puppet/modules/custom/manifests/init.pp
@@ -5,11 +5,18 @@ class custom {
$services = hiera('services', [])
+ # monitoring
+ # munin
include custom_munin_node
include custom_shorewall::munin_node
+ # check_mk
+ if member ( $services, 'monitor') {
+ include ::custom::check_mk
+ }
+
# packages we want to install on every server
- ensure_packages (['iotop', 'vim', 'tmux', 'bash-completion', 'ncdu'])
+ ensure_packages (['iotop', 'vim', 'tmux', 'bash-completion', 'ncdu', 'tig'])
if member ( $services, 'openvpn') {
include custom_munin_node::openvpn