Repository: cloudstack
Updated Branches:
refs/heads/master be419211e -> 2ce5a0c96
CLOUDSTACK-8947 - FW_EGRESS should be added only to filter table
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/cbd6464b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/cbd6464b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/cbd6464b
Branch: refs/heads/master
Commit: cbd6464b88a027b535c7ea553ac3f5868490d2e6
Parents: be41921
Author: Wilder Rodrigues <wrodrigues@schubergphilis.com>
Authored: Tue Oct 13 12:24:42 2015 +0200
Committer: Wilder Rodrigues <wrodrigues@schubergphilis.com>
Committed: Wed Oct 14 07:44:37 2015 +0200
----------------------------------------------------------------------
systemvm/patches/debian/config/opt/cloud/bin/configure.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/cloudstack/blob/cbd6464b/systemvm/patches/debian/config/opt/cloud/bin/configure.py
----------------------------------------------------------------------
diff --git a/systemvm/patches/debian/config/opt/cloud/bin/configure.py b/systemvm/patches/debian/config/opt/cloud/bin/configure.py
index 55a4b94..a8a7fc0 100755
--- a/systemvm/patches/debian/config/opt/cloud/bin/configure.py
+++ b/systemvm/patches/debian/config/opt/cloud/bin/configure.py
@@ -148,7 +148,7 @@ class CsAcl(CsDataBag):
" -m %s " % rule['protocol'] + \
" --dport %s" % rnge
- self.fw.append(["filter", "front", "%s -j %s" % (fwr, rule['action'])])
+ self.fw.append(["filter", "", "%s -j %s" % (fwr, rule['action'])])
logging.debug("EGRESS rule configured for protocol ==> %s, action ==>
%s", rule['protocol'], rule['action'])
|