2017-11-18 16:35:03 +00:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
#
|
2012-05-21 13:12:18 +00: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-23 15:40:23 +00:00
|
|
|
[Unit]
|
|
|
|
Description=udev Coldplug all Devices
|
2012-06-22 08:38:40 +00:00
|
|
|
Documentation=man:udev(7) man:systemd-udevd.service(8)
|
2013-03-25 20:22:52 +00:00
|
|
|
DefaultDependencies=no
|
2012-07-02 19:35:14 +00:00
|
|
|
Wants=systemd-udevd.service
|
2017-08-15 13:22:44 +00:00
|
|
|
After=systemd-udevd-kernel.socket systemd-udevd-control.socket
|
2013-03-25 20:22:52 +00:00
|
|
|
Before=sysinit.target
|
2013-08-17 17:07:42 +00:00
|
|
|
ConditionPathIsReadWrite=/sys
|
2011-03-23 15:40:23 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
|
|
|
RemainAfterExit=yes
|
2019-12-18 08:14:57 +00:00
|
|
|
ExecStart=udevadm trigger --type=subsystems --action=add
|
|
|
|
ExecStart=udevadm trigger --type=devices --action=add
|