add systemd files
parent
d4bdaaa0d7
commit
2e757a7fde
@ -0,0 +1,11 @@
|
||||
# Pfad zum speichern: /etc/systemd/system/abflussdaten_sammeln.service
|
||||
[Unit]
|
||||
Description=Service Unit zum starten der Abflussdaten sammeln
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/python3 /opt/abflussdaten_sammeln/abflussdaten_sammeln.py
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -0,0 +1,10 @@
|
||||
# Pfad zum speichern: /etc/systemd/system/abflussdaten_sammeln.timer
|
||||
[Unit]
|
||||
Description=Timer zum Aufruf der Abflussdaten sammeln Service Unit
|
||||
|
||||
[Timer]
|
||||
OnCalendar=*:0/10
|
||||
Unit=abflussdaten_sammeln.service
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue