From 71514a97fa1dd218e8682014fc6ab468c30011bd Mon Sep 17 00:00:00 2001 From: grokbeer <1428380+grokbeer@users.noreply.github.com> Date: Fri, 8 May 2020 21:56:08 +1200 Subject: [PATCH] Delaying fs sync to ensure shutdown message is logged to disk Signed-off-by: grokbeer <1428380+grokbeer@users.noreply.github.com> --- pwnagotchi/__init__.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pwnagotchi/__init__.py b/pwnagotchi/__init__.py index 3a46071..feee0b2 100644 --- a/pwnagotchi/__init__.py +++ b/pwnagotchi/__init__.py @@ -106,12 +106,6 @@ def temperature(celsius=True): def shutdown(): - logging.warning("syncing...") - - from pwnagotchi import fs - for m in fs.mounts: - m.sync() - logging.warning("shutting down ...") from pwnagotchi.ui import view @@ -119,6 +113,13 @@ def shutdown(): view.ROOT.on_shutdown() # give it some time to refresh the ui time.sleep(10) + + logging.warning("syncing...") + + from pwnagotchi import fs + for m in fs.mounts: + m.sync() + os.system("sync") os.system("halt")