summaryrefslogtreecommitdiffstats
path: root/usr/local/sbin/show_filter_reload_status.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/sbin/show_filter_reload_status.php')
-rwxr-xr-xusr/local/sbin/show_filter_reload_status.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/usr/local/sbin/show_filter_reload_status.php b/usr/local/sbin/show_filter_reload_status.php
deleted file mode 100755
index e66c890..0000000
--- a/usr/local/sbin/show_filter_reload_status.php
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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