В последних версиях Debian выпилили файл rc.local, который позволяет выполнять произвольные скрипты при запуске системы. Данное решение очень удобно, поэтому запилим его обратно.
Создадим файл сервиса:
nano /etc/systemd/system/rc-local.service
Со следующим содержимым:
[Unit] Description=/etc/rc.local ConditionPathExists=/etc/rc.local [Service] Type=idle ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes [Install] WantedBy=multi-user.target
Создадим сам 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
Добавим сервис в автозапуск:
systemctl enable rc-local
Запускаем сервис:
systemctl start rc-local
Смотрим состояние сервиса:
systemctl status rc-local
Готовый скрипт
#!/bin/bash tee -a /etc/systemd/system/rc-local.service << END [Unit] Description=/etc/rc.local ConditionPathExists=/etc/rc.local [Service] Type=idle ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes [Install] WantedBy=multi-user.target END tee -a /etc/rc.local << END #!/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 END chmod +x /etc/rc.local systemctl enable rc-local systemctl start rc-localcomments powered by HyperComments