As phpMyAdmin version 4 is currently supported for security fixes only the latest stable version is imported as an extra package. phpMyAdmin 5 is compatible with PHP 7.1 and newer and MySQL/MariaDB 5.5 and newer.
15 lines
326 B
Text
15 lines
326 B
Text
# $NetBSD: INSTALL,v 1.1 2022/04/22 19:28:59 tm Exp $
|
|
|
|
APACHE_USER=@APACHE_USER@
|
|
APACHE_GROUP=@APACHE_GROUP@
|
|
PMVARDIR=@PMVARDIR@
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ ! -d ${PMVARDIR}/tmp ]; then
|
|
${MKDIR} -p ${PMVARDIR}/tmp
|
|
${CHOWN} -R ${APACHE_USER}:${APACHE_GROUP} ${PMVARDIR}
|
|
${CHMOD} -R 755 ${PMVARDIR}
|
|
fi
|
|
;;
|
|
esac
|