summaryrefslogtreecommitdiffstats
path: root/src/usr/local/sbin/show_filter_reload_status.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/sbin/show_filter_reload_status.php')
-rwxr-xr-xsrc/usr/local/sbin/show_filter_reload_status.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/usr/local/sbin/show_filter_reload_status.php b/src/usr/local/sbin/show_filter_reload_status.php
new file mode 100755
index 0000000..e66c890
--- /dev/null
+++ b/src/usr/local/sbin/show_filter_reload_status.php
@@ -0,0 +1,26 @@
+#!/usr/local/bin/php-cgi -q
+<?php
+
+$last_text = "";
+
+while (!stristr($status, "Done")) {
+ $status = get_status();
+ if ($status <> "") {
+ echo $status . "\n";
+ }
+ sleep(1);
+}
+
+function get_status() {
+ global $last_text;
+ $status = file_get_contents("/var/run/filter_reload_status");
+ $status = str_replace("...", "", $status);
+ $status .= "...";
+ if ($status <> $last_text) {
+ $last_text = $status;
+ return $status;
+ }
+ return "";
+}
+
+?>
OpenPOWER on IntegriCloud