summaryrefslogtreecommitdiffstats
path: root/usr/local/sbin/show_filter_reload_status.php
blob: daa35adfb7bcbfbed0a53108ed250cf46f2dd709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/local/bin/php -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