diff options
author | mezz <mezz@FreeBSD.org> | 2012-05-21 00:47:37 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2012-05-21 00:47:37 +0800 |
commit | d676c919154d3b65f50dba10a7a84e415e62bcf2 (patch) | |
tree | 53ba36b4e14bfcb8753a9abb15c3a8039315c0c9 /net/avahi-libdns | |
parent | 419545cdf9719ca0eac32433432550d32e91da14 (diff) | |
download | freebsd-ports-gnome-d676c919154d3b65f50dba10a7a84e415e62bcf2.tar.gz freebsd-ports-gnome-d676c919154d3b65f50dba10a7a84e415e62bcf2.tar.zst freebsd-ports-gnome-d676c919154d3b65f50dba10a7a84e415e62bcf2.zip |
Switch from old way to new way by using USERS.
PR: ports/164187
Submitted by: crees
Diffstat (limited to 'net/avahi-libdns')
-rw-r--r-- | net/avahi-libdns/pkg-install | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/net/avahi-libdns/pkg-install b/net/avahi-libdns/pkg-install deleted file mode 100644 index 6e85e6e88d90..000000000000 --- a/net/avahi-libdns/pkg-install +++ /dev/null @@ -1,36 +0,0 @@ -#!/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 Daemon User" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - exit 0 - ;; -esac |