766506c513
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)
16 lines
243 B
Bash
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
|