blob: 89c613d6caac3cf434bc5966c7efd05aa3a0be05 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
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"
;;
esac
|