chiark / gitweb /
journal: crash when filesystem is low on space
[elogind.git] / units / systemd-udev-settle.service.in
1 #  This file is part of systemd.
2 #
3 #  systemd is free software; you can redistribute it and/or modify it
4 #  under the terms of the GNU Lesser General Public License as published by
5 #  the Free Software Foundation; either version 2.1 of the License, or
6 #  (at your option) any later version.
7
8 # This service is usually not enabled by default. If enabled, it
9 # acts as a barrier for basic.target -- so all later services will
10 # wait for udev completely finishing its coldplug run.
11 #
12 # If needed, to work around broken or non-hotplug-aware services,
13 # it might be enabled unconditionally, or pulled-in on-demand by
14 # the services that assume a fully populated /dev at startup. It
15 # should not be used or pulled-in ever on systems without such
16 # legacy services running.
17
18 [Unit]
19 Description=udev Wait for Complete Device Initialization
20 Documentation=man:udev(7)
21 Documentation=man:udevd(8)
22 DefaultDependencies=no
23 Wants=systemd-udev.service
24 After=udev-trigger.service
25 Before=basic.target
26 ConditionCapability=CAP_MKNOD
27
28 [Service]
29 Type=oneshot
30 TimeoutSec=180
31 RemainAfterExit=yes
32 ExecStart=@bindir@/udevadm settle
33
34 [Install]
35 WantedBy=basic.target