2020-11-09 12:23:58 +08:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2020-01-07 22:33:29 +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.
|
|
|
|
|
|
|
|
[Unit]
|
2020-01-08 01:54:24 +08:00
|
|
|
Description=Load Kernel Module %i
|
|
|
|
DefaultDependencies=no
|
|
|
|
Before=sysinit.target
|
2020-01-07 22:33:29 +08:00
|
|
|
Documentation=man:modprobe(8)
|
2020-01-08 01:54:24 +08:00
|
|
|
ConditionCapability=CAP_SYS_MODULE
|
2022-06-15 19:12:46 +08:00
|
|
|
StartLimitIntervalSec=0
|
2020-01-07 22:33:29 +08:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
2023-10-20 22:25:15 +08:00
|
|
|
ExecStart=-/sbin/modprobe -abq %i
|