9 lines
251 B
Bash
Executable File
9 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
##
|
|
## Script to start the radarr server
|
|
##
|
|
addgroup -g $GID $USER
|
|
adduser -D -u $UID -G $USER -H $USER
|
|
until [ -f "/config/nzbdrone.db" ]; do sleep 10; done
|
|
su - $USER -c "/usr/bin/mono --debug /Radarr/Radarr.exe --nobrowser --data=/config"
|