From 634956ff456bdb66e5a8853c413191b816921168 Mon Sep 17 00:00:00 2001 From: pvizeli Date: Fri, 24 Mar 2017 16:30:49 +0100 Subject: [PATCH] fix reboot --- meta-hassio/recipes-support/resinhup/resinhup/resinhup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-hassio/recipes-support/resinhup/resinhup/resinhup b/meta-hassio/recipes-support/resinhup/resinhup/resinhup index b5cc843dd..f1c3dd48f 100644 --- a/meta-hassio/recipes-support/resinhup/resinhup/resinhup +++ b/meta-hassio/recipes-support/resinhup/resinhup/resinhup @@ -329,7 +329,7 @@ if [ $RESINHUP_EXIT -eq 0 ] || [ $RESINHUP_EXIT -eq 2 ] || [ $RESINHUP_EXIT -eq # Everything is fine - Reboot if [ "$NOREBOOT" == "no" ]; then log "Rebooting board in 5 seconds..." - nohup bash -c " /bin/sleep 5 ; /sbin/reboot " & + nohup bash -c " /bin/sleep 5 ; /sbin/reboot " > /dev/null 2>&1 & else log "'No-reboot' requested." fi