aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/emby-server/pkg-deinstall
blob: bd1a56d7fd50614d27fb863404933c4b60822ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# $FreeBSD$
#

case $2 in
    DEINSTALL)
        echo "==> If you are uninstalling Emby Server permanently,"
        echo "    and you do *NOT* want to retain the database, logs"
        echo "    configuration and media metadata, you should"
        echo "    manually delete directory /var/db/emby-server"
        if [ -d "/var/db/mediabrowser" ]; then
            echo "    and /var/db/mediabrowser."
        fi
        ;;
esac