Repository: cloudstack Updated Branches: refs/heads/master 415631ab5 -> 3ded3e900
CLOUDSTACK-8843: Fixed issue in default iptables rules on shared network VR Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a15df056 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a15df056 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a15df056 Branch: refs/heads/master Commit: a15df0569fa0e56b14a9a119858c53e8ae6085c3 Parents: 1525ac0 Author: Jayapal <[email protected]> Authored: Wed Sep 16 15:22:33 2015 +0530 Committer: Jayapal <[email protected]> Committed: Wed Sep 16 15:24:34 2015 +0530 ---------------------------------------------------------------------- systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a15df056/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py index 6c1d091..a1de596 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py @@ -176,6 +176,8 @@ class CsNetfilters(object): These standard firewall rules vary according to the device type """ type = CsCmdLine("cmdline").get_type() + if type == 'dhcpsrvr': + type = 'router' try: table = ''
