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

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

1 answer

+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)

Sign up to answer this question »