From f7d204105620530a35a8db79768862012dbd343b Mon Sep 17 00:00:00 2001 From: Chip Childers Date: Mon, 19 Nov 2012 14:39:58 -0500 Subject: [PATCH] Added exit as a cloudmonkey command, in addition to the existing quit command. Signed-off-by: Chip Childers --- tools/cli/cloudmonkey/cloudmonkey.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/cli/cloudmonkey/cloudmonkey.py b/tools/cli/cloudmonkey/cloudmonkey.py index 4630136b84b..f0672d5725d 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