a2cb2b77ba
Chinese Internet Community. In Taiwan, there're over 300 BBS sites using Firebird, about 50 sites in china, and about 20 worldwide (USA, UK, Canada, Austrailla and many countries can be find Firebird) and over thousands of users on-line at the same time in biggest BBS site. For more information, ref: http://www.firebird.org.tw/ PR: ports/24899 Submitted by: Edward Ping-Da Chuan <edwardc@firebird.com.tw>
38 lines
708 B
Bash
38 lines
708 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/sbin
|
|
USER=bbs
|
|
GROUP=bbs
|
|
UID=9999
|
|
GID=99
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
|
|
if pw group show "${GROUP}" 2>/dev/null; then
|
|
echo "You already have a group \"${GROUP}\", so I will use it."
|
|
else
|
|
if pw groupadd ${GROUP} -g ${GID}; then
|
|
echo "Added group \"${GROUP}\"."
|
|
else
|
|
echo "Adding group \"${GROUP}\" failed..."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if pw user show "${USER}" 2>/dev/null; then
|
|
echo "You already have a user \"${USER}\", so I will use it."
|
|
else
|
|
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
|
|
-d /usr/local/bbs -s /sbin/nologin -c "Firebird BBS"
|
|
then
|
|
echo "Added user \"${USER}\"."
|
|
else
|
|
echo "Adding user \"${USER}\" failed..."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|