8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Start cron in background
|
|
service cron start
|
|
|
|
# Starte maltrail-Server im Vordergrund
|
|
exec python /opt/maltrail/server.py |