freebsd-ports/devel/dbus/pkg-install
Joe Marcus Clarke b1a2cec832 * Fix the path to the dbus socket
* Make sure the messagebus user and group are created, and block out uid/gid
  556 for this
* Delete the dbus.pid file as part of a stop_postcmd (dbus doesn't delete its
  own pid file)
* Clean up some bash'isms in the KDE detection configure code
* Make the strtod() Call more 4.X friendly by not passing hex to it
2004-07-22 05:41:15 +00:00

36 lines
746 B
Bash

#!/bin/sh
case $2 in
POST-INSTALL)
USER=messagebus
GROUP=${USER}
UID=556
GID=${UID}
PW=/usr/sbin/pw
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 "/nonexistent" -s /sbin/nologin -c "D-BUS Daemon User"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
exit 0
;;
esac