freebsd-ports/audio/linux-shoutcast/pkg-deinstall
Ion-Mihai Tetcu 766506c513 Shoutcast is Nullsoft's Winamp-based streaming audio server. It isn't
an open source software, but freely available for i386 versions of
FreeBSD 4.X/5.X and Linux. This port installs the Linux binary.

WWW: http://www.shoutcast.com

PR:		ports/95514
Submitted by:	Gabor Kovesdan
Approved by:	lawrance(mentor, implicit)
2006-06-05 10:39:01 +00:00

16 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