aboutsummaryrefslogblamecommitdiff
path: root/audio/umurmur/pkg-deinstall
blob: 1d37d16c0668491198a56dac4c1cd9b23e131c77 (plain) (tree)
1
         


















                                                                                 
#!/bin/sh

PATH=/bin:/usr/sbin
USER=umurmur
GROUP=umurmur
RUNDIR=/var/run/umurmur

case $2 in
	POST-DEINSTALL)
		if pw group show ${GROUP} 2>&1 > /dev/null; then
			echo "You should manually remove the \"${GROUP}\" group."
		fi

		if pw user show ${USER} 2>&1 > /dev/null; then
			echo "You should manually remove the \"${USER}\" user."
		fi

		rm -Rf ${RUNDIR}
		;;
esac