freebsd-ports/net/sipxpbx/files/pkg-install.in
Martin Wilke 8b6c6c1221 - Unbreak
- plist cleanup

Submitted by:	Mike Durian <durian@shadetreesoftware.com>
2007-05-31 04:28:00 +00:00

59 lines
1.9 KiB
Bash

#!/bin/sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin
USER=sipx
GROUP=sipx
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} ; then
echo "Added group \"${GROUP}\"."
else
echo "Add of 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} -g ${GROUP} -h - \
-d %%LOCALSTATEDIR%%/sipxdata/configserver/phone/profile/tftproot -s %%PREFIX%%/bin/bash -c "sipX" ; then
echo "Added user \"${USER}\"."
else
echo "Add of user \"${USER}\" failed."
exit 1
fi
fi
;;
POST-INSTALL)
# Create a dummy file in /usr/local/www/sipX/conf to act
# as a poorman's reference count. Both sipxpbx and sipxvxml
# create this empty directory. If we leave it empty,
# when we remove either package, the directory will be removed
# (assuming it is still empty). However, the other package
# still thinks the empty directory still exists. Tinderbox
# doesn't like this.
touch %%PREFIX%%/www/sipX/conf/.sipxpbx_dummy
# fix up permission on sipX directories under /var
mkdir -p %%LOCALSTATEDIR%%/log/sipxpbx
mkdir -p %%LOCALSTATEDIR%%/run/sipxpbx
chown ${USER}:${GROUP} %%LOCALSTATEDIR%%/log/sipxpbx
chown ${USER}:${GROUP} %%LOCALSTATEDIR%%/run/sipxpbx
chown -R ${USER}:${GROUP} %%LOCALSTATEDIR%%/sipxdata
chown ${USER}:${GROUP} %%PREFIX%%/etc/sipxpbx
chown -R ${USER}:${GROUP} %%PREFIX%%/www/sipX
if [ ! -f %%PREFIX%%/%%APACHEMODDIR%%/mod_ssl.so ] ; then \
echo "!!!!!!!!!!" ; \
echo "You have installed www/apache%%APACHE_VERSION%% without the SSL module." ; \
echo "sipXpbx requires the apache SSL module." ; \
echo "Please rebuild and reinstall www/apache%%APACHE_VERSION%% with -DWITH_SSL_MODULES" ; \
echo "!!!!!!!!!!" ; \
fi
;;
esac