freebsd-ports/multimedia/emby-server/pkg-install
Adam Weinberger 06454c3471 Rename multimedia/mediabrowser to multimedia/emby-server, and update
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)
2015-04-08 15:56:51 +00:00

15 lines
315 B
Bash

#!/bin/sh
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
case $2 in
POST-INSTALL)
echo "Downloading Mozilla's root certificates and importing into the Mono Trust store..."
${PKG_PREFIX}/bin/mozroots --import --sync
;;
esac
exit 0