First check that start-stop-daemon is being found:
Code:
type start-stop-daemon
Assuming you have already done this, you could modify /etc/init.d/cron to prefix start-stop-daemon with /sbin/ this would stop it searching, and ensure it goes to /sbin to run it
(I know this is not an ideal solution but it should resolve the immediate issue)
BTW in my experience there are only six parameters in a crontab file:
- minute
- hour
- day of month
- month
- day of week
- command
Whenever I need to run a command as another user, I tend to start the command with /bin/su - {user} -c {command}