From 8a4e7919da0edd358f6d3293069873094b75a570 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 19 Sep 2024 22:29:50 +0200 Subject: [PATCH] Reboot system after installation --- scripts/Common/OS/install.fish | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/Common/OS/install.fish b/scripts/Common/OS/install.fish index e8da4963..a231677f 100755 --- a/scripts/Common/OS/install.fish +++ b/scripts/Common/OS/install.fish @@ -59,4 +59,9 @@ else end and runHook postInstall || true + echo "The installation finished successfully!" + and echo "This machine will reboot in 5 seconds..." + and echo "Press CTRL-C to abort..." + and sleep 5 + and systemctl reboot end