Update diag_limiter_info.php (#2756)

This commit is contained in:
Michael 2018-09-25 11:23:37 +02:00 committed by Franco Fichtner
parent 770a708089
commit c5f3cb1b65

View File

@ -30,7 +30,7 @@
require_once("guiconfig.inc");
if (isset($_POST['getactivity'])) {
$text = `/sbin/ipfw sched show`;
$text = `/sbin/ipfw pipe show`;
if ($text == "") {
$text = gettext('We could not find any limiters on this system.');
}
@ -41,6 +41,11 @@ if (isset($_POST['getactivity'])) {
echo "\n\nQueues:\n";
echo $text;
}
$text = `/sbin/ipfw sched show`;
if ($text != "") {
echo "\n\nSchedulers:\n";
echo $text;
}
exit;
}