summaryrefslogtreecommitdiff
path: root/debian.md
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2014-01-13 10:55:25 +0100
committervarac <varacanero@zeromail.org>2014-01-13 10:55:25 +0100
commit4cd47d03c68d8530dcbff37c5bc1cf6a8006d767 (patch)
tree8393a41d0adc317ae81f91a74d117c1514b16be9 /debian.md
parent49b4a2c9f071b9fccdca0b0d1d6a825b61273aed (diff)
updated readme.md about ssh authentication, added examples for debian in debian.md
Diffstat (limited to 'debian.md')
-rw-r--r--debian.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/debian.md b/debian.md
new file mode 100644
index 0000000..96d32a4
--- /dev/null
+++ b/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;
+ }
+