mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
06454c3471
to 3.0.5572.0. The user and group names have change, but the uid/gid remain the same. The port will continue to use the old database and user/group names if they exist, but will default to the new names for new installs. Instructions are in pkg-message for how to manually migrate things yourself. PR: 199093 Submitted by: maintainer (Ben Woods)
16 lines
387 B
Bash
16 lines
387 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"
|
|
if [ -d "/var/db/mediabrowser" ]; then
|
|
echo " and /var/db/mediabrowser."
|
|
fi
|
|
;;
|
|
esac
|