mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-23 15:49:59 -04:00
15 lines
182 B
Bash
Executable File
15 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python3 "${ROOT_DIRECTORY}"/bazarr.py &
|
|
PID=$!
|
|
|
|
sleep 30
|
|
|
|
if kill -s 0 $PID
|
|
then
|
|
echo "Bazarr is still running. We'll kill it..."
|
|
kill $PID
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi |