mirror of https://github.com/Sonarr/Sonarr
19 lines
356 B
Plaintext
19 lines
356 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "abort-install" ]; then
|
||
|
# preinst was aborted, possibly due to NzbDrone still running.
|
||
|
# Nothing to do here
|
||
|
:
|
||
|
fi
|
||
|
|
||
|
# Purge the entire sonarr configuration directory.
|
||
|
# TODO: Maybe move a minimal backup to tmp?
|
||
|
if [ "$1" = "purge" ]; then
|
||
|
if [ -d "/var/opt/sonarr" ]; then
|
||
|
rm -rf /var/opt/sonarr
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|