Commit f6588424 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) fix carp status page, accidentally reversed status

parent f1cedb7c
...@@ -126,7 +126,7 @@ include("head.inc"); ...@@ -126,7 +126,7 @@ include("head.inc");
<table class="table table-condensed"> <table class="table table-condensed">
<tr> <tr>
<td> <td>
<input type="submit" class="btn btn-primary" name="disablecarp" value="<?=($carpcount > 0 && $status) ? gettext("Enable CARP") : gettext("Temporarily Disable CARP") ;?>" /> <input type="submit" class="btn btn-primary" name="disablecarp" value="<?=($carpcount > 0 && !$status) ? gettext("Enable CARP") : gettext("Temporarily Disable CARP") ;?>" />
<input type="submit" class="btn btn-primary" name="carp_maintenancemode" value="<?=isset($config["virtualip_carp_maintenancemode"]) ? gettext("Leave Persistent CARP Maintenance Mode") : gettext("Enter Persistent CARP Maintenance Mode");?> " /> <input type="submit" class="btn btn-primary" name="carp_maintenancemode" value="<?=isset($config["virtualip_carp_maintenancemode"]) ? gettext("Leave Persistent CARP Maintenance Mode") : gettext("Enter Persistent CARP Maintenance Mode");?> " />
</td> </td>
</tr> </tr>
...@@ -154,7 +154,7 @@ include("head.inc"); ...@@ -154,7 +154,7 @@ include("head.inc");
} }
$icon = ""; $icon = "";
$intf_status = get_carp_interface_status("{$carp['interface']}_vip{$carp['vhid']}"); $intf_status = get_carp_interface_status("{$carp['interface']}_vip{$carp['vhid']}");
if (($carpcount > 0 && $status)) { if (($carpcount > 0 && !$status)) {
$icon = "glyphicon glyphicon-remove text-danger"; $icon = "glyphicon glyphicon-remove text-danger";
$intf_status = "DISABLED"; $intf_status = "DISABLED";
} elseif ($intf_status == "MASTER") { } elseif ($intf_status == "MASTER") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment