2012-05-21 21:12:18 +08:00
|
|
|
# This file is part of systemd.
|
|
|
|
#
|
|
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
2011-03-31 19:15:47 +08:00
|
|
|
# This service is usually not enabled by default. If enabled, it
|
|
|
|
# acts as a barrier for basic.target -- so all later services will
|
2011-03-29 07:14:53 +08:00
|
|
|
# wait for udev completely finishing its coldplug run.
|
|
|
|
#
|
2011-03-31 19:15:47 +08:00
|
|
|
# If needed, to work around broken or non-hotplug-aware services,
|
|
|
|
# it might be enabled unconditionally, or pulled-in on-demand by
|
|
|
|
# the services that assume a fully populated /dev at startup. It
|
|
|
|
# should not be used or pulled-in ever on systems without such
|
|
|
|
# legacy services running.
|
2011-03-29 07:14:53 +08:00
|
|
|
|
2010-06-25 07:31:57 +08:00
|
|
|
[Unit]
|
2010-08-20 00:02:20 +08:00
|
|
|
Description=udev Wait for Complete Device Initialization
|
2012-06-22 16:38:40 +08:00
|
|
|
Documentation=man:udev(7) man:systemd-udevd.service(8)
|
2010-07-04 10:16:14 +08:00
|
|
|
DefaultDependencies=no
|
2012-07-03 03:35:14 +08:00
|
|
|
Wants=systemd-udevd.service
|
2012-06-06 20:30:16 +08:00
|
|
|
After=systemd-udev-trigger.service
|
2012-04-14 01:35:06 +08:00
|
|
|
ConditionCapability=CAP_MKNOD
|
2010-06-25 07:31:57 +08:00
|
|
|
|
|
|
|
[Service]
|
2010-08-17 15:37:57 +08:00
|
|
|
Type=oneshot
|
2011-04-28 06:04:17 +08:00
|
|
|
TimeoutSec=180
|
2010-08-18 00:53:57 +08:00
|
|
|
RemainAfterExit=yes
|
2011-12-01 19:17:22 +08:00
|
|
|
ExecStart=@bindir@/udevadm settle
|