From c5f30433771ac47a6c7216a4242630f5e59407f3 Mon Sep 17 00:00:00 2001 From: gtxaspec Date: Sun, 1 Oct 2023 14:40:37 -0700 Subject: [PATCH] switch to echo to fix formatting of logging messages on boot --- general/overlay/etc/init.d/S99rc.local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/general/overlay/etc/init.d/S99rc.local b/general/overlay/etc/init.d/S99rc.local index 84a48f86..1ae2c50c 100755 --- a/general/overlay/etc/init.d/S99rc.local +++ b/general/overlay/etc/init.d/S99rc.local @@ -5,12 +5,12 @@ start() { - printf "Starting rc.local" + echo "Starting rc.local" /etc/rc.local } restart() { - printf "Restarting rc.local" + echo "Restarting rc.local" /etc/rc.local }