check for rrd extension
authorChristian Weiske <cweiske@cweiske.de>
Sat, 25 May 2013 21:47:45 +0000 (23:47 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Sat, 25 May 2013 21:47:45 +0000 (23:47 +0200)
htmlreport/gen-html.php

index 92dc41c6fcdee70787ff8eccd4c05a8871680945..8969e0d49810be9470b5274947fa2800ff7bdeb9 100755 (executable)
@@ -7,6 +7,11 @@ if (!file_exists($cfgfile)) {
 }
 require $cfgfile;
 
 }
 require $cfgfile;
 
+if (!function_exists('rrd_lastupdate')) {
+    echo "rrd PHP extension is missing\n";
+    exit(2);
+}
+
 $data = array();
 foreach ($names as $id => $name) {
     $data[$id]['name'] = $name;
 $data = array();
 foreach ($names as $id => $name) {
     $data[$id]['name'] = $name;