From 8b41bb08f6b0312f8e500f562a35bbe1621183df Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Sun, 9 Aug 2020 09:21:23 -0400 Subject: [PATCH] Fix restart parameter on shutdown command (#118) Fixes #117 --- app/local_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/local_system.py b/app/local_system.py index a681fc84e..5541cef31 100644 --- a/app/local_system.py +++ b/app/local_system.py @@ -19,7 +19,7 @@ def hostname(): def shutdown(): logger.info('Shutting down system') - return _exec_shutdown(restart=True) + return _exec_shutdown(restart=False) def restart():