freebsd-ports/audio/murmur/pkg-deinstall
Chris Rees 886d2d357a - Use USERS and GROUPS
- Stop automatically deleting user on deinstall; may be used by other ports

PR:		ports/157520
Submitted by:	Chris Rees (utisoft@gmail.com) (me)
Approved by:	tabthorpe (co-mentor)
2011-06-25 19:55:42 +00:00

11 lines
124 B
Bash

#!/bin/sh
# $FreeBSD$
PATH=/bin:/usr/sbin
RUNDIR=/var/run/murmur
case $2 in
POST-DEINSTALL)
rm -Rf ${RUNDIR}
;;
esac