mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
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)
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
|