Linux – Cron restart in OpenSuse 13.2

cronlinuxopensuse

In Suse Enterprise 10 & 11 & 12, we can restart the crontab after update via the following command:
/etc/init.d/cron restart

In OpenSuse platform, I could not find it. I thought maybe there is a different way related to the service management tool "systemd". How can cron restart be performed in OpenSuse?

Best Answer

So for OpenSuse 13, the way to go for restarting the cron service is:

systemctl restart cron.service
Related Topic