mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
886d2d357a
- 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)
12 lines
124 B
Bash
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
|