Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mxtools/misc_systemd_units/udev-settled.target
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
17 lines (15 sloc)
493 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Our services assume local devices are available | |
# Request and wait for systemd-udev-settle.service before basic.target | |
# | |
# Order behind network.service, because our network.service currently | |
# has DefaultDependencies=no. Other services are behind basic.target | |
# per DefaultDependencies=yes. | |
[Unit] | |
Description=udev Settled | |
DefaultDependencies=no | |
Wants=systemd-udev-settle.service | |
After=systemd-udev-settle.service | |
Before=basic.target | |
Before=network.service | |
[Install] | |
WantedBy=basic.target |