config/ubuntu-20.04/etc/systemd/system/rc-local.service
2020-06-01 18:40:56 +02:00

28 lines
506 B
Desktop File

# /etc/systemd/system/rc-local.service
# Setup:
# sudo touch /etc/rc.local
# sudo chmod +x /etc/rc.local
# sudo systemctl enable rc-local
#
# Check with:
#
# sudo systemctl start rc-local.service
# sudo systemctl status rc-local.service
[Unit]
Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target