Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on How to delay systemd unit at boot/login?

Parent

How to delay systemd unit at boot/login?

+3
−0

I have a systemd unit that runs hourly, but when the computer has just booted/logged in it will "catch up" on the previous run, so it ends up firing right after I log in.

Is there a way to make it wait a minute before attempting to start? It should only when catching up just after a boot. Otherwise, when running on schedule or manually triggered, it shouldn't delay itself.

For context, I have a DNS issue with my unit. Of course, I could add the proper targets, but it seems easier to just delay it a bit. Also, delaying is useful in other contexts, like wanting to avoid performance intensive tasks right after boot.

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

Post
+2
−0

You can use ExecStartPre= to delay the execution of the systemd unit.

Use systemctl edit myunit.service to create a drop in file and add the following lines:

[Service]
ExecStartPre=/bin/sleep 300

This will delay the execution of the actual Exec= line by 5 minutes (300 seconds).

To prevent the execution of the delay on manual starts you can check the uptime:

[Service]
ExecStartPre=bash -c 'if [ $(awk \'{print int($1)}\' /proc/uptime) -lt 600 ]; then /bin/sleep 300; fi'
History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

1 comment thread

Delay only timer? (6 comments)
Delay only timer?
matthewsnyder‭ wrote 4 months ago

I'm guessing this will also delay systemctl start myunit.service. Is there a way to delay the timer only, and not the service itself, so that manual runs skip the delay?

GeraldS‭ wrote 4 months ago

I don't see any systemd way to do that. I added a variant that only runs the sleep command if the uptime is sufficiently low. It's more a dirty hack, but this kind of delay is sort of a hack anyway.

GeraldS‭ wrote 4 months ago · edited 4 months ago

For systemd timers specifically OnBootSec= looks promising.

matthewsnyder‭ wrote 4 months ago

Thank you! For others - with systemd, the action has to be one command anyway, so if it's complex you have to wrap it in a script. So the way to skip the delay in manual runs would appear to be to run the script directly rather than the unit.

You would still have the problem of annoying delays while testing it. But I guess you can temporarily comment out the delay until you're done testing.

matthewsnyder‭ wrote 4 months ago

And, looks like if I set both OnBootSec and OnCalendar it will somewhat solve my problem. The OnCalendar will fire right after boot and fail, but a few minutes later OnBootSec will trigger again and this time succeed. My use case would be okay with an occasional fail, so long as there's a success soon after.

Iizuki‭ wrote 4 months ago

You could replace with OnCalendar with OnUnitActiveSec (and make sure not to make it Persistent). And then remove any delays from the service itself.