7 lines
168 B
Bash
7 lines
168 B
Bash
#!/bin/sh
|
|
##
|
|
## Script to start the sonarr server
|
|
##
|
|
until [ -f "/config/watcher.sqlite" ]; do sleep 10; done
|
|
/usr/bin/python3 /watcher3/watcher.py --userdata=/config/
|