1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 23:51:28 +03:00
systemd/init/udev-settle.service.in

22 lines
594 B
SYSTEMD
Raw Normal View History

# This barrier service is usually not enabled by default. If enabled,
# it acts as a barrier for basic.target -- so all later services will
# wait for udev completely finishing its coldplug run.
#
# It might be enabled just unconditionally, or pulled-in on-demand by
# broken or non-hotplug-aware services that assume a fully populated
# /dev at startup.
2010-06-25 03:31:57 +04:00
[Unit]
Description=udev Wait for Complete Device Initialization
DefaultDependencies=no
2010-06-25 03:31:57 +04:00
After=udev.service
2010-10-07 12:49:13 +04:00
Before=basic.target
2010-06-25 03:31:57 +04:00
[Service]
2010-08-17 11:37:57 +04:00
Type=oneshot
2010-08-17 20:53:57 +04:00
RemainAfterExit=yes
ExecStart=@sbindir@/udevadm settle
[Install]
WantedBy=basic.target