freebsd-ports/misc/dnetc/pkg-deinstall
Pav Lucistnik 10e6e5dae2 - Give maintainership to submitter
- Turn into master slave to allow slaves of different architectures
- Remove user/group on deinstall
- Install rc script as .sample
- Various tweaks

PR:		ports/67463
Submitted by:	Tim Bishop <tim@bishnet.net>
2004-06-02 16:47:02 +00:00

28 lines
682 B
Bash

#!/bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
CLIENTUSER=%%CLIENTUSER%%
CLIENTGROUP=%%CLIENTGROUP%%
if /usr/sbin/pw usershow "$CLIENTUSER" 2>/dev/null 1>&2; then
if /usr/sbin/pw userdel -n $CLIENTUSER; then
echo "=> Removed user \"$CLIENTUSER\"."
else
echo "=> Removing user \"$CLIENTUSER\" failed..."
exit 1
fi
fi
if /usr/sbin/pw groupshow "$CLIENTGROUP" 2>/dev/null 1>&2; then
if /usr/sbin/pw groupdel -n $CLIENTGROUP; then
echo "=> Removed group \"$CLIENTGROUP\"."
else
echo "=> Removing group \"$CLIENTGROUP\" failed..."
exit 1
fi
fi
exit 0