diff options
author | Warren Baker <warren@decoy.co.za> | 2010-12-17 19:11:48 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2010-12-17 19:11:48 +0200 |
commit | baed1fbf528a885c1c07bf38d1a5821f8c681828 (patch) | |
tree | c8eec2ed95855c344cdd3b5568e22da43687fd1c /config/unbound | |
parent | 9909e172fe6d0e2ce2f54989b3b8e322ab19b24c (diff) | |
download | pfsense-packages-baed1fbf528a885c1c07bf38d1a5821f8c681828.tar.gz pfsense-packages-baed1fbf528a885c1c07bf38d1a5821f8c681828.tar.bz2 pfsense-packages-baed1fbf528a885c1c07bf38d1a5821f8c681828.zip |
Page title fix.
Diffstat (limited to 'config/unbound')
-rw-r--r-- | config/unbound/unbound_status.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config/unbound/unbound_status.php b/config/unbound/unbound_status.php index 1b9899d1..8ea10b73 100644 --- a/config/unbound/unbound_status.php +++ b/config/unbound/unbound_status.php @@ -36,7 +36,7 @@ if(!is_process_running("unbound")) { exit; } -$pgtitle = "Unbound: Status"; +$pgtitle = "Services: Unbound: Status"; include("head.inc"); $pfSversion = str_replace("\n", "", file_get_contents("/etc/version")); @@ -141,13 +141,13 @@ function execCmds() { <td class="tabcont" width="100%"> <?php $entries = trim(exec("/usr/local/sbin/unbound-control dump_cache | wc -l")); - defCmdT("Unbound status", "/usr/local/sbin/unbound-control status", "6"); - defCmdT("Unbound stats", "/usr/local/sbin/unbound-control stats_noreset"); - defCmdT("Unbound stubs", "/usr/local/sbin/unbound-control list_stubs", "8"); - defCmdT("Unbound forwards", "/usr/local/sbin/unbound-control list_forwards"); - defCmdT("Unbound local zones", "/usr/local/sbin/unbound-control list_local_zones"); - defCmdT("Unbound local data", "/usr/local/sbin/unbound-control list_local_data"); - defCmdT("Unbound cache ($entries entries)", "/usr/local/sbin/unbound-control dump_cache", "60"); + defCmdT("Unbound status", "unbound-control status", "6"); + defCmdT("Unbound stats", "unbound-control stats_noreset"); + defCmdT("Unbound stubs", "unbound-control list_stubs", "8"); + defCmdT("Unbound forwards", "unbound-control list_forwards"); + defCmdT("Unbound local zones", "unbound-control list_local_zones"); + defCmdT("Unbound local data", "unbound-control list_local_data"); + defCmdT("Unbound cache ($entries entries)", "unbound-control dump_cache", "60"); defCmdT("Unbound configuration", "/bin/cat /usr/local/etc/unbound/unbound.conf", "60"); listCmds(); execCmds(); |