fix no restart

This commit is contained in:
2025-07-30 20:50:51 +02:00
parent 0f2a6c87bb
commit a6584f366c
2 changed files with 1 additions and 1 deletions

View File

View File

@@ -119,7 +119,7 @@ func reboot(uuid string) {
panic(err) panic(err)
} }
if err := exec.Command("shutdown", "/r", "/t", "2").Run(); err != nil { if err := exec.Command("shutdown", "/r", "/t", "0").Run(); err != nil {
panic(err) panic(err)
} }