aboutsummaryrefslogtreecommitdiff
path: root/src/usr/bin/logout-manager-cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/bin/logout-manager-cli.py')
-rwxr-xr-xsrc/usr/bin/logout-manager-cli.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usr/bin/logout-manager-cli.py b/src/usr/bin/logout-manager-cli.py
index 64ea133..8fd78b4 100755
--- a/src/usr/bin/logout-manager-cli.py
+++ b/src/usr/bin/logout-manager-cli.py
@@ -60,6 +60,7 @@ if config.can_hibernate:
if args.action in allowed_actions:
func = getattr(globals()['actions'],args.action)
func(config)
+ sys.exit(0)
elif args.action:
eprint("Unable to take action: %s" % str(args.action))
sys.exit(1)
bgstack15