Merge "Revert "Optimise the code style""

This commit is contained in:
Zuul 2018-02-16 20:46:23 +00:00 committed by Gerrit Code Review
commit ff069f524f
1 changed files with 10 additions and 9 deletions

View File

@ -245,15 +245,16 @@ def main():
else:
daemon = linux_daemon.Daemon(daemonizable=freezer_scheduler)
_ACTION = {
'start': daemon.start,
'stop': daemon.stop,
'restart': daemon.restart,
'reload': daemon.reload,
'status': daemon.status
}
_ACTION.get(CONF.action)()
if CONF.action == 'start':
daemon.start()
elif CONF.action == 'stop':
daemon.stop()
elif CONF.action == 'restart':
daemon.restart()
elif CONF.action == 'reload':
daemon.reload()
elif CONF.action == 'status':
daemon.status()
# os.RETURN_CODES are only available to posix like systems, on windows
# we need to translate the code to an actual number which is the equivalent