PR: 239756 Submitted by: Dries Michiels <driesm.michiels@gmail.com> Approved by: Maxime Gauduin <alucryd@archlinux.org> (maintainer)
11 lines
299 B
Bash
11 lines
299 B
Bash
#!/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"
|
|
;;
|
|
esac
|