summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8d00ed7)
raw | patch | inline | side by side (parent: 8d00ed7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 12 Apr 2011 06:43:41 +0000 (06:43 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 12 Apr 2011 06:43:41 +0000 (06:43 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@20700 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/setup/class_setupStep_Checks.inc | patch | blob | history |
diff --git a/gosa-core/setup/class_setupStep_Checks.inc b/gosa-core/setup/class_setupStep_Checks.inc
index d33b402e41d1306139f11485508b7bf7117fe478..7fb51734a8d2bccbca83d8a365976635f7a0895e 100644 (file)
$M = TRUE;
$this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
+ /* Check for php5-curl support */
+ $N = msgPool::checkingFor("curl");
+ $D = _("GOsa requires this module to communicate with different types of servers and protocols.");
+ $S = msgPool::installPhpModule("php5-curl");
+ $R = is_callable("curl_init");
+ $M = TRUE;
+ $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
+
/* Checing for iconv */
$N = msgPool::checkingFor("inconv");
$D = _("GOsa requires this module for the samba integration.");