mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
9cbf1e58f9
Possible alternative to #14819. For me, setting RemainAfterExit=yes would be OK, but if people think that it might cause issues, then this could be a reasonable alternative that still let's us skip the invocation of the separate binary.
21 lines
577 B
Desktop File
21 lines
577 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# 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
|
|
ConditionPathExists=!/sys/module/%I
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=-/sbin/modprobe -abq %I
|