Hello, I added a series of cron jobs from the terminal doing things like below, and the jobs are well listed looking with "sudo crontab -l" afterward, but the added ones are not visible in the aaPanel tab about cron. Why? Is it the expected behavior (e.g. aaPanel shows the one created through aaPanel only) or is there something special I should do? Or maybe I missed the point... Let me know.
sudo crontab -l > cronlist
echo "0 * * * * /usr/bin/php -q /www/wwwroot/mydomain.tld/apps/console/console.php hourly >/dev/null 2>&1" >> cronlist
[other jobs added the same way here]
sudo crontab cronlist
--
EDIT (the next day): OK, I finally added them through the aaPanel's UI, but (suggestion), it could be cool to be able to directly add a job in its native format (e.g., 0 * * * * /usr/bin/php -q /www/wwwroot/mydomain.tld/apps/console/console.php hourly >/dev/null 2>&1) to simplify the process when you have tons of jobs to add.