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 <[email protected]> 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 <[email protected]> Authored: Mon Nov 19 14:39:58 2012 -0500 Committer: Chip Childers <[email protected]> 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
