Запуск rc.local в Debian 9


В Debian 9 по-умолчанию не работает файл-автозапуска скриптов rc.local
Запустим его сами.

Создаем файл:

nano /etc/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

Делаем его исполняемым:

chmod +x /etc/rc.local

Включаем автозапуск rc-local:

systemctl start rc-local
systemctl status rc-local

Радуемся работе 🙂