I have a cron job that runs a PHP script, which automatically checks an email inbox, with email notifications. The problem is that every half hour my command keeps changing from this:
/usr/bin/php -q /home/username/chat/cod/email.php [This runs every minute]
to this:
nice -n19 ionice -c2 -n7 /usr/bin/php -q /home/username/chat/cod/email.php [This runs every five minutes...]
Why is that happening?
/usr/bin/php -q /home/username/chat/cod/email.php [This runs every minute]
to this:
nice -n19 ionice -c2 -n7 /usr/bin/php -q /home/username/chat/cod/email.php [This runs every five minutes...]
Why is that happening?