#!/bin/sh
# $MidnightBSD: mports/audio/shoutcast/pkg-deinstall,v 1.1 2008/09/12 18:25:53 laffer1 Exp $

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
