Package: cron
Version: 3.0pl1-98

Because of #383857, the tests for anacron in /etc/crontab now say something
like 
   test -x /usr/sbin/anacron ||  cd / && run-parts --report /etc/cron.daily
which is parsed like
   (test -x /usr/sbin/anacron || cd /) && run-parts --report /etc/cron.daily
so run-parts always runs (but not necessarily with CWD=/).

Isn't
   test -x /usr/sbin/anacron || (cd / && run-parts --report /etc/cron.daily)
or perhaps
   cd / && test -x /usr/sbin/anacron || run-parts --report /etc/cron.daily
what is meant?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to