summaryrefslogtreecommitdiffstats
path: root/usr/local/sbin/show_filter_reload_status.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-25 08:08:24 -0300
committerRenato Botelho <renato@netgate.com>2015-08-25 14:49:54 -0300
commit46bc6e545a17e77202aaf01ec0cd8d5a46567525 (patch)
tree32d18dda436ec739c67c489ceb771e8629cd926f /usr/local/sbin/show_filter_reload_status.php
parent4d9801c2dbd2b3e54a39578ee62b93af66607227 (diff)
downloadpfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.zip
pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.tar.gz
Move main pfSense content to src/
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