I have three tasks that are currently being run daily by cron, one after the next, as follows:
gatekeeper ~ # ls -l /etc/cron.daily/
total 92
-rwxr-xr-x 1 root root 3814 May 10 2019 1task-A.sh
-rwxr-xr-x 1 root root 1406 Jun 28 2015 2task-B.sh
-rwxr-xr-x 1 root root 1414 May 10 2019 3task-C.sh
I need to replicate this using systemd.
I know I can create three oneshot systemd services, controlled by three systemd timer files, however this will cause the three tasks to run independently of one another, in parallel, and out of order.
What modification do I make to the systemd service file or timer file to indicate that the three tasks, when executed, must run consecutively (not in parallel) and in order (not at random).
Try having only 1 timer unit and 3 services. Then, set the services
Types=
tooneshot
. By settingAfter=
andWants=
properties between the services, you should be able to run the 3 services sequentially when the timer is triggered.Have a look at this post: https://serverfault.com/questions/900779/systemd-setting-dependencies-between-templated-timer-units
task-C.timer
:task-C.service
: