systemd/units/rc-local.service.in

24 lines
740 B
SYSTEMD
Raw Normal View History

2023-04-12 17:00:04 +08:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2022-05-14 02:56:24 +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.
# This unit gets pulled automatically into multi-user.target by
2023-04-12 17:00:04 +08:00
# systemd-rc-local-generator if {{RC_LOCAL_PATH}} is executable.
2022-05-14 02:56:24 +08:00
[Unit]
2023-04-12 17:00:04 +08:00
Description={{RC_LOCAL_PATH}} Compatibility
2022-05-14 02:56:24 +08:00
Documentation=man:systemd-rc-local-generator(8)
2023-04-12 17:00:04 +08:00
ConditionFileIsExecutable={{RC_LOCAL_PATH}}
2022-05-14 02:56:24 +08:00
After=network.target
[Service]
Type=forking
2023-04-12 17:00:04 +08:00
ExecStart={{RC_LOCAL_PATH}} start
2022-05-14 02:56:24 +08:00
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no