Hi all,
I'm currently writing a PHP application that needs to add a cron job... As I don't want to do this as admin, I created the file /etc/cron.allow and added the name of a normal user in it. But when Itry to manually (through an SSH session) add a cron job as this user I get this:
bash-3.00$ crontab -u seb cront.cron
must be privileged to use -u
So obviously it won't work from my PHP app either.
So I have a couple of questions:
* How do I make a user privileged? (on the latest 7.2)
* Is there any security risk to do so? If yes is there any other way to add a cron job?
Thanks,
Seb.