freebsd-ports/audio/shoutcast/pkg-deinstall
Pav Lucistnik 5a0523e1e6 - Run under user shoutcast
- Patch sample config file

PR:		ports/88849
Submitted by:	Gabor Kovesdan <gabor.kovesdan@t-hosting.hu> (maintainer)
2005-11-18 16:20:59 +00:00

12 lines
186 B
Bash

#!/bin/sh
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