freebsd-ports/sysutils/sge62/files/pkg-install.in
Brooks Davis c7985448bb Upgrade to SGE 6.0 Update4.
There are significant conceptual differences between SGE 5 and SGE
6 so potential upgraders should beware.  At the file level the two
are entierly incompatable so SGE 5 must be removed before SGE 6 is
installed.

The port has seen limited testing so beware.
2005-07-29 02:13:32 +00:00

35 lines
762 B
Bash

#!/bin/sh
u=sgeadmin
g=sgeadmin
ugid=103
homedir=/nonexistent
shell=/sbin/nologin
comment="Sun Grid Engine Admin"
case $2 in
POST-INSTALL)
if pw group show "${g}" >/dev/null 2>&1; then
echo "Using existing group \"${g}\"."
else
echo "Creating group \"${g}\", (gid: ${ugid})."
pw groupadd ${g} -g ${ugid}
if [ $? != 0 ]; then
echo "Failed to add group \"${g}\"."
exit 1
fi
fi
if pw user show "${u}" >/dev/null 2>&1; then
echo "Using existing user \"${u}\"."
else
echo "Creating user \"${u}\", (uid: ${ugid})."
pw useradd ${u} -u ${ugid} -g ${ugid} -h - \
-d ${homedir} -s ${shell} -c "${comment}"
if [ $? != 0 ]; then
echo "Failed to add user \"${u}\"."
exit 1
fi
fi
chown ${u}:${g} %%PREFIX%%/%%SGE_BASE%%
;;
esac