summaryrefslogtreecommitdiff
path: root/puppet/modules/check_mk/debian.md
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:41 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:41 -0400
commit783f953a87ef0531dd0b43614a101362c3e592c5 (patch)
tree1b2b12314188537703cc79ee784f5be33c7c2ad6 /puppet/modules/check_mk/debian.md
parent8d50b8cf042eb3b25095281734c8dd58e606c018 (diff)
parentc9d50f333a81c716f3e227e9eb449dc76b6eb6e3 (diff)
Merge commit 'c9d50f333a81c716f3e227e9eb449dc76b6eb6e3' as 'puppet/modules/check_mk'
Diffstat (limited to 'puppet/modules/check_mk/debian.md')
-rw-r--r--puppet/modules/check_mk/debian.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/puppet/modules/check_mk/debian.md b/puppet/modules/check_mk/debian.md
new file mode 100644
index 00000000..96d32a4e
--- /dev/null
+++ b/puppet/modules/check_mk/debian.md
@@ -0,0 +1,35 @@
+Examples for using this check_mk repository on debian
+=====================================================
+
+What it does
+============
+
+* ssh authentication is configured to allow the server to execute check_mk on the client
+* omd is installed on the server
+* check_mk is installed as package on the client
+
+On the client
+=============
+
+ class site_check_mk::client {
+ class { 'check_mk::agent':
+ agent_package_name => 'check-mk-agent',
+ agent_logwatch_package_name => 'check-mk-agent-logwatch',
+ use_ssh => true,
+ register_agent => false
+ }
+ }
+
+
+On the server
+=============
+
+ include check_mk::omd_repo
+ class { 'check_mk':
+ package => 'omd',
+ omd_service_name => 'omd-1.00',
+ http_service_name => 'apache2',
+ omdadmin_htpasswd => trocla("${::fqdn}_omdadmin"),
+ use_ssh => true;
+ }
+