You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ch...@apache.org on 2012/11/19 20:40:37 UTC

git commit: Added exit as a cloudmonkey command, in addition to the existing quit command. Signed-off-by: Chip Childers

Updated Branches:
  refs/heads/master 311ef69a7 -> f7d204105


Added exit as a cloudmonkey command, in addition to the existing quit command.
Signed-off-by: Chip Childers <ch...@gmail.com>


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

Branch: refs/heads/master
Commit: f7d204105620530a35a8db79768862012dbd343b
Parents: 311ef69
Author: Chip Childers <ch...@gmail.com>
Authored: Mon Nov 19 14:39:58 2012 -0500
Committer: Chip Childers <ch...@gmail.com>
Committed: Mon Nov 19 14:39:58 2012 -0500

----------------------------------------------------------------------
 tools/cli/cloudmonkey/cloudmonkey.py |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f7d20410/tools/cli/cloudmonkey/cloudmonkey.py
----------------------------------------------------------------------
diff --git a/tools/cli/cloudmonkey/cloudmonkey.py b/tools/cli/cloudmonkey/cloudmonkey.py
index 4630136..f0672d5 100644
--- a/tools/cli/cloudmonkey/cloudmonkey.py
+++ b/tools/cli/cloudmonkey/cloudmonkey.py
@@ -449,6 +449,12 @@ class CloudStackShell(cmd.Cmd):
             text = subfields[2]
             return self.completedefault(text, line, begidx, endidx)
 
+    def do_exit(self, args):
+        """
+        Quit Apache CloudStack CLI
+        """
+        return self.do_quit(args)
+
     def do_quit(self, args):
         """
         Quit Apache CloudStack CLI