From 7618cd7cbe66065b4c185d0805e8982504bee237 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 17 Feb 2009 17:29:17 +0000 Subject: fix incorrect quoting in busybox cron init script SVN-Revision: 14540 --- package/busybox/files/cron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/busybox/files') diff --git a/package/busybox/files/cron b/package/busybox/files/cron index 9a31392..f247130 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -3,7 +3,7 @@ START=50 start () { - [ -z $(ls /etc/crontabs/) ] && exit 1 + [ -z "$(ls /etc/crontabs/)" ] && exit 1 mkdir -p /var/spool/cron [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs crond -c /etc/crontabs -- cgit v1.1