mirror of
https://git.netzspielplatz.de/docker-multiarch/jdownloader2-headless.git
synced 2025-11-08 18:59:29 +00:00
17 lines
213 B
Bash
Executable file
17 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function stopJD2 {
|
|
PID=$(cat JDownloader.pid)
|
|
kill $PID
|
|
wait $PID
|
|
exit
|
|
}
|
|
|
|
trap stopJD2 EXIT
|
|
|
|
java -Djava.awt.headless=true -jar /opt/JDownloader/JDownloader.jar &
|
|
|
|
while true; do
|
|
sleep inf
|
|
done
|
|
|