- Add netxms to UIDs and GIDs Changes: http://www.netxms.org/download/ChangeLog PR: ports/188406 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
18 lines
226 B
Bash
18 lines
226 B
Bash
#! /bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
PATH=/bin:/usr/sbin
|
|
TSHOME=${PKG_PREFIX}/share/netxms
|
|
|
|
USER=netxms
|
|
GROUP=${USER}
|
|
|
|
case "$2" in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
chown -R ${USER}:${GROUP} ${TSHOME}
|
|
chmod -R u+w,o-rx ${TSHOME}
|
|
;;
|
|
esac
|