mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
296338fdfb
the sources. - don't overwrite .conf file and install it as .saple also - fix pkg-deinstall - add CONLFICTS with upcomming linux binary port - bump PORTREVISION Submitted by: maintainer Approved by: lawrance (mentor, implicit)
17 lines
243 B
Bash
17 lines
243 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
SC_GROUP=shoutcast
|
|
SC_USER=shoutcast
|
|
SC_SHELL=/bin/sh
|
|
SC_HOME=/nonexistent
|
|
PW=/usr/sbin/pw
|
|
|
|
pw groupdel shoutcast >/dev/null 2>&1
|
|
pw userdel shoutcast >/dev/null 2>&1
|
|
|
|
exit 0
|