freebsd-ports/net/avahi-autoipd/pkg-install
Joe Marcus Clarke 53640498f6 Use a new GID for avahi-autoipd to avoid a conflict with the Samba well-known RID
for the local Guests group.

PR:		163529
Submitted by:	Anthony Chavez <acc@hexadecagram.org>
2011-12-28 21:01:44 +00:00

36 lines
757 B
Bash

#!/bin/sh
case $2 in
POST-INSTALL)
USER=avahi-autoipd
GROUP=${USER}
UID=588
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 "Avahi Autoipd Daemon User"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
exit 0
;;
esac