aboutsummaryrefslogtreecommitdiffstats
path: root/packages/carp_status.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-02-19 02:32:40 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-02-19 02:32:40 +0000
commit0e3cc4a0ef0c01d83c583c62ea59a8db5e7ffc5f (patch)
tree3367ce5d611cecbcfdc39c456babac3856f50e19 /packages/carp_status.php
parent674fcc46e55d9920c72962e8fa1141a2a1a13b42 (diff)
downloadpfsense-packages-0e3cc4a0ef0c01d83c583c62ea59a8db5e7ffc5f.tar.gz
pfsense-packages-0e3cc4a0ef0c01d83c583c62ea59a8db5e7ffc5f.tar.bz2
pfsense-packages-0e3cc4a0ef0c01d83c583c62ea59a8db5e7ffc5f.zip
Add <title>
Diffstat (limited to 'packages/carp_status.php')
-rw-r--r--packages/carp_status.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/carp_status.php b/packages/carp_status.php
index 65230586..fee7781c 100644
--- a/packages/carp_status.php
+++ b/packages/carp_status.php
@@ -83,9 +83,10 @@ foreach($config['installedpackages']['carp']['config'] as $carp) {
$status = get_carp_interface_status($carp_int);
if(isset($carp['balancing'])) $balancing = "true"; else $balancing = "false";
if(isset($carp['premtpion'])) $premption = "true"; else $premption = "false";
+ if($synciface <> "") $sync_status = get_pfsync_interface_status($synciface);
echo "<tr>";
echo "<td class=\"listlr\"><center>" . $ipaddress . "</td>";
- echo "<td class=\"listlr\"><center>" . $status . "</td>";
+ echo "<td class=\"listlr\"><center>" . $status . "<br>" . $sync_status . "</td>";
echo "<td class=\"listlr\"><center>" . $synciface . "</td>";
echo "</tr>";
}