mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
5a0523e1e6
- Patch sample config file PR: ports/88849 Submitted by: Gabor Kovesdan <gabor.kovesdan@t-hosting.hu> (maintainer)
13 lines
186 B
Bash
13 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
|