1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
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

12 lines
124 B
Bash

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