Столкнулся с тем, что в Ubuntu нет привычного c CentOS'а мне файла "rc.local", решение следующее.
Создаем сервис:
vim /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
Создаем файл "rc.local" и добавляем ему бит выполнения:
touch /etc/rc.local chmod +x /etc/rc.local
Содержимое файла "rc.local":
#!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. exit 0
Добавляем сервис в автозапуск:
systemctl enable rc-local
Запускаем и проверяем статус:
systemctl start rc-local systemctl status rc-local