Skip to content

Latest commit

 

History

History
13 lines (13 loc) · 225 Bytes

systemd.md

File metadata and controls

13 lines (13 loc) · 225 Bytes

systemd

Startup order

In the "[Unit]" section, the following:

Wants=network-online.target
After=network-online.target

is better than

Wants=network.target
After=network.target

if a connection is required.