From 682f755dcd7c47efb1403e5e293810bc69f72a20 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sat, 26 Jan 2013 17:52:18 +0200 Subject: [PATCH] busybox: crond & crontab symlinks still have to be removed the new settings addon checks for /sbin/crond existence to decide whether cron support is there or not, so symlinks have to be removed --- packages/sysutils/busybox/install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/sysutils/busybox/install b/packages/sysutils/busybox/install index 49449deec0..a5f7dc32e4 100755 --- a/packages/sysutils/busybox/install +++ b/packages/sysutils/busybox/install @@ -71,3 +71,9 @@ USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw -m sha512 $USER_PASSWORD`" mkdir -p $INSTALL/usr/www/error echo "404" > $INSTALL/usr/www/error/404.html + + # cron support + if [ ! "$CRON_SUPPORT" = "yes" ] ; then + rm -f $INSTALL/sbin/crond + rm -f $INSTALL/bin/crontab + fi