Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 33F812009EE for ; Wed, 18 May 2016 21:55:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 32E4A1609B0; Wed, 18 May 2016 19:55:12 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A02FC160A15 for ; Wed, 18 May 2016 21:55:11 +0200 (CEST) Received: (qmail 25779 invoked by uid 500); 18 May 2016 19:55:08 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 25720 invoked by uid 99); 18 May 2016 19:55:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 May 2016 19:55:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 98B9DDFBDE; Wed, 18 May 2016 19:55:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: swill@apache.org To: commits@cloudstack.apache.org Date: Wed, 18 May 2016 19:55:08 -0000 Message-Id: <3f5e24fdf5d34505aaf549c0b5da1507@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/15] git commit: updated refs/heads/4.8 to 8f330b0 archived-at: Wed, 18 May 2016 19:55:12 -0000 Repository: cloudstack Updated Branches: refs/heads/4.8 a0aa0604e -> 8f330b0b9 Remove duplicate spaces, and thus duplicate rules. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/69e93489 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/69e93489 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/69e93489 Branch: refs/heads/4.8 Commit: 69e9348900e6337a16788a54283d5c9ee3b7a221 Parents: b857f79 Author: Boris Schrijver Authored: Wed Feb 3 15:30:19 2016 +0100 Committer: Boris Schrijver Committed: Fri Feb 5 12:02:57 2016 +0100 ---------------------------------------------------------------------- systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/69e93489/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 47eb50b..71127bd 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsNetfilter.py @@ -172,6 +172,7 @@ class CsNetfilters(object): def apply_rules(self): s = [] for r in self.iptablerules: + r.replace(' ', ' ') # Remove duplicate spaces if r not in s: s.append(r)