From 03488819afd810b0a66290ffca5b4dbe9145246d Mon Sep 17 00:00:00 2001 From: grokbeer <1428380+grokbeer@users.noreply.github.com> Date: Fri, 8 May 2020 21:57:08 +1200 Subject: [PATCH] Ensure fs is synced before reboot so logs aren't lost Signed-off-by: grokbeer <1428380+grokbeer@users.noreply.github.com> --- pwnagotchi/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pwnagotchi/__init__.py b/pwnagotchi/__init__.py index 3a46071..231b3b5 100644 --- a/pwnagotchi/__init__.py +++ b/pwnagotchi/__init__.py @@ -153,5 +153,11 @@ def reboot(mode=None): elif mode == 'MANU': os.system("touch /root/.pwnagotchi-manual") + logging.warning("syncing...") + + from pwnagotchi import fs + for m in fs.mounts: + m.sync() + os.system("sync") os.system("shutdown -r now")