You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by wi...@apache.org on 2013/07/18 11:48:36 UTC

git commit: updated refs/heads/master to c85d41d

Updated Branches:
  refs/heads/master 551fdd7df -> c85d41d46


Corrected typos in logmessages

Signed-off-by: Rene Diepstraten <ma...@renediepstraten.nl>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c85d41d4
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c85d41d4
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c85d41d4

Branch: refs/heads/master
Commit: c85d41d46f93252963fc60da5f17f6c7e243bf00
Parents: 551fdd7
Author: Rene Diepstraten <ma...@renediepstraten.nl>
Authored: Thu Jul 18 00:08:26 2013 +0200
Committer: Wido den Hollander <wi...@widodh.nl>
Committed: Thu Jul 18 11:47:30 2013 +0200

----------------------------------------------------------------------
 scripts/vm/network/security_group.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c85d41d4/scripts/vm/network/security_group.py
----------------------------------------------------------------------
diff --git a/scripts/vm/network/security_group.py b/scripts/vm/network/security_group.py
index 044747a..01e3660 100755
--- a/scripts/vm/network/security_group.py
+++ b/scripts/vm/network/security_group.py
@@ -140,7 +140,7 @@ def destroy_network_rules_for_vm(vm_name, vif=None):
                 try:
                     execute("iptables -t nat " + dnat)
                 except:
-                    logging.debug("Igoring failure to delete dnat: " + dnat)
+                    logging.debug("Ignoring failure to delete dnat: " + dnat)
         except:
             pass
     remove_rule_log_for_vm(vm_name)
@@ -319,7 +319,7 @@ def add_to_ipset(ipsetname, ips, action):
             logging.debug("vm ip " + ip)
             execute("ipset " + action + " " + ipsetname + " " + ip)
         except:
-            logging.debug("vm ip alreday in ip set " + ip)
+            logging.debug("vm ip already in ip set " + ip)
             continue
 
     return result