mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
b3e32582f6
This reverts commit 9cbf1e58f9
.
The presence of /sys/module/%I directory can't be used to assert that the load
of a given module is complete and therefore the call to modprobe(8) can be
skipped. Indeed this directory is created before the init() function of the
module is called.
Users of modprobe@.service needs to be sure that once this service returns the
module is fully operational.
20 lines
549 B
Desktop File
20 lines
549 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# 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.
|
|
|
|
[Unit]
|
|
Description=Load Kernel Module %i
|
|
DefaultDependencies=no
|
|
Before=sysinit.target
|
|
Documentation=man:modprobe(8)
|
|
ConditionCapability=CAP_SYS_MODULE
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=-/sbin/modprobe -abq %I
|