10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# cleanup pid if it exists
|
||
[[ -e /config/sonarr.pid ]] && \
|
||
rm -rf /config/sonarr.pid
|
||
|
||
# permissions
|
||
chown -R abc:abc \
|
||
/app/sonarr/bin
|