Systemd
Aus Doku-Wiki
systemd Startscript
Minimale angaben für ein Systemd-Startscript sind:
vi /etc/systemd/system/test.service
- Service Name
[Unit] Description=test service
- Start Daemon/Script
[Service] ExecStart=/usr/local/sbin/test.script
- Wann wird der Service gestartet
multi-user.target ist der Standard, auch bei Server ohne grafische Oberfläche
[Install] WantedBy=multi-user.target
- Ein minimales Startscript sieht also so aus:
[Unit] Description=test service [Service] ExecStart=/usr/local/sbin/test.script [Install] WantedBy=multi-user.target