bisher habe ich auf meinem homeserver cronjobs immer über /etc/crontab ausführen lassen, cronie hat veränderungen in dieser datei automatisch geparsed und übernommen.
seit ner weile scheint cronie diese datei nicht mehr zu erkennen. cronjobs werden nicht mehr ausgeführt änderungen an der datei werden nicht mehr ekannt. das log bliebt leer.
was mache ich falsch? oder wird /etc/crontab nicht mehr unterstützt...
/etc/crontab
# fetchmail, every 15 minutes
*/15 * * * * root /opt/servertools/fetchmail.sh
# munin, every 5 minutes
*/5 * * * * munin munin-cron
# ttrss, hourly
0 */1 * * * root /opt/servertools/ttrss
# sync time
0 */1 * * * root ntpd -qg > /dev/null 2>&1
# Firewall, lockout children the whole week - but not on weekends
0 7 * * 1-4 root /etc/rc.d/firewall profile default
0 7 * * 5-7 root /etc/rc.d/firewall profile child
0 22 * * 5-7 root /etc/rc.d/firewall profile default
# Firewall, Vacations - lockout children overnight
#0 7 * * * root /etc/rc.d/firewall profile child
#0 22 * * * root /etc/rc.d/firewall profile default
# jDownloader, enable reconnect overnight
0 23 * * * root curl "http://192.168.0.20:10025/action/set/reconnectenabled/true" > /dev/null
0 7 * * * root curl "http://192.168.0.20:10025/action/set/reconnectenabled/false" > /dev/null
# Pacman, refresh database
0 */6 * * * root /opt/servertools/updatemonitor.py
#0 */6 * * * aaron /home/aaron/packages/openelec/update.sh
# check ip
*/5 * * * * root /opt/servertools/noip.py
/etc/conf.d/crond
# Settings for the CRON daemon.
# CRONDARGS= : any extra command-line startup arguments for crond
CRONDARGS="-m off -s"
wobei ich mir nicht sicher bin ob diese noch gelesen wird, wenn über systemd gestartet wird...