#!/bin/sh -e
if [ "$1" = "purge" ]; then
if grep -q icecast /etc/passwd; then
deluser icecast
fi
true
fi
