summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c5104ef)
raw | patch | inline | side by side (parent: c5104ef)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 31 May 2005 10:52:47 +0000 (10:52 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 31 May 2005 10:52:47 +0000 (10:52 +0000) |
Added check to setup
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@532 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@532 594d385d-05f5-0310-b6e9-bd551577e9d8
include/setup_checks.inc | patch | blob | history |
index a3c8c146831c6e5749987516b157a140ec71924c..45382c3b587ef937a4850018ed2f18a4902d754b 100644 (file)
--- a/include/setup_checks.inc
+++ b/include/setup_checks.inc
$msg.= check ( $faults, _("Checking for kadm5 module"),
_("Managing users in kerberos requires the kadm5 module which is downloadable via PEAR network."),
function_exists('kadm5_init_with_password'), FALSE);
+ $msg.= check ( $faults, _("Checking for snmp module"),
+ _("Simple Network Management Protocol (SNMP) is required client monitoring."),
+ function_exists('snmpget'), FALSE);
+
return ($msg);
}