From e962dd0e27891f07b51711972e16114ed6ed1bb1 Mon Sep 17 00:00:00 2001 From: modem7 Date: Sun, 21 Apr 2024 21:37:13 +0100 Subject: [PATCH] change printf to echo This resolves issues with the printf syntax which doesn't play well with the % symbol --- base-fullbuild/root/etc/s6-overlay/s6-rc.d/svc-cron/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-fullbuild/root/etc/s6-overlay/s6-rc.d/svc-cron/run b/base-fullbuild/root/etc/s6-overlay/s6-rc.d/svc-cron/run index 9989d53..4312f35 100644 --- a/base-fullbuild/root/etc/s6-overlay/s6-rc.d/svc-cron/run +++ b/base-fullbuild/root/etc/s6-overlay/s6-rc.d/svc-cron/run @@ -57,7 +57,7 @@ fi crontab=$(crontab -l) # Output cron settings to console -printf "Cron job set as: \n$crontab\n" +echo -e "Cron job set as: \n$crontab\n" # Start Cron exec /usr/sbin/crond -f -L /dev/stdout