From 65f747a8bcf19e0271e6bbe04c2432f9a93cc406 Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Fri, 1 Apr 2022 10:16:56 +0200 Subject: [PATCH] naywatch: fix reboot_now Naywatch should first try to reboot normally, and if that does not work do a hard reboot. However, the hard reboot was never called. Signed-off-by: Nick Hainke --- naywatch/files/naywatch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naywatch/files/naywatch.sh b/naywatch/files/naywatch.sh index 3627464..78c8dd4 100644 --- a/naywatch/files/naywatch.sh +++ b/naywatch/files/naywatch.sh @@ -81,7 +81,7 @@ no_neighbors() { fi if [ $USE_WATCHDOG -eq 0 ] && [ $NO_NEIGHBORS_COUNT -gt $MIN_KICK ]; then - reboot_now + reboot_now 10 fi }