Создаем сервис rc-local
Файл /etc/systemd/system/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
Создаем файл /etc/rc.local
#!/bin/sh
exit 0
Делаем его исполняемым.
# chmod +x /etc/rc.local
Запускаем сервис и назначаем ему автозапуск
# systemctl enable rc-local
# systemctl start rc-local