From f44a477866afab51846fe4a29dc5f471884d9a86 Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 26 Sep 2024 00:05:10 +0200 Subject: [PATCH] Update system.ts --- source/modules/system.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/modules/system.ts b/source/modules/system.ts index a39c5c4..6cd6306 100644 --- a/source/modules/system.ts +++ b/source/modules/system.ts @@ -275,7 +275,7 @@ export async function shutdown(): Promise { } export async function reboot(): Promise { - await $`pkill -f umbreld` + await $`pkill -USR1 -f umbreld` return true }