Who changed my condition! De Morgans laws chaps The negation of a conjunction is the disjunction of the negations. The negation of a disjunction is the conjunction of the negations.
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/109134c4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/109134c4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/109134c4 Branch: refs/heads/feature/systemvm-persistent-config Commit: 109134c46c44d92f460c4732d1f7ede9cd88158c Parents: 4a1a6f7 Author: Ian Southam <[email protected]> Authored: Thu Jan 29 16:30:58 2015 +0100 Committer: wilderrodrigues <[email protected]> Committed: Mon Feb 16 16:08:41 2015 +0100 ---------------------------------------------------------------------- .../patches/debian/config/opt/cloud/bin/cs/CsAddress.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/109134c4/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py index 0b5cca9..193c6f6 100644 --- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py @@ -298,9 +298,12 @@ class CsIP: for i in CsHelper.execute(cmd): if " DOWN " in i: cmd2 = "ip link set %s up" % self.getDevice() - # Do not change the state of ips on a redundant router that are managed by vrrp or CsRedundant - # the guest networks interfaces should be up and running. - if not self.config.cmdline().is_redundant() and not self.is_public(): + # If redundant do not bring up public interfaces + # master.py and keepalived deal with tham + if self.config.cmdline().is_redundant() and not self.is_public(): + CsHelper.execute(cmd2) + # if not redundant bring everything up + if not self.config.cmdline().is_redundant(): CsHelper.execute(cmd2) def set_mark(self):
