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)
15 lines
315 B
Bash
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
|