I have timer A
that every few hours runs a script that runs service B
(script with systemctl start
in it). Then I would like to run service C
after B
is finished.
Here is my service C
:
[Unit]
Description=lorem ipsum
Requires=B.service
After=B.service
[Service]
Type=oneshot
ExecStart=echo
B
is also Type=oneshot.
Problem: after I invoke systemctl start B.service
the C
is not automatically launched. I doesn't have [Install] section because I don't want them to start on boot.