Systemd Timer Jobs In the past, it would be fairly typical to use cron to schedule jobs on Linux or BSD. Cron is an excellent tool for scheduling simple jobs, but weaknesses will begin to appear when complexity is required.
Some of the benefits of systemd include:
Automatic rotaion of logs. Memory/CPU scheduling. Random start/job delays. We’ll cover services and timers today.
Timers The first step to creating a recurring job using systemd is to create the timer unit itself.
Continue reading