3ada00cdc3
SpamAssassin/ClamAV, written in C. PR: 78629[1], 79135[2] Submitted by: Anton Karpov <toxa@toxahost.ru> [1], Cristiano Deana <cris@gufi.org> [2]
13 lines
160 B
Bash
13 lines
160 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
USER=simscan
|
|
GROUP=${USER}
|
|
|
|
if [ x$2 != xDEINSTALL ]; then
|
|
exit
|
|
fi
|
|
|
|
pw groupdel -n ${GROUP} || true
|
|
pw userdel -n ${GROUP} || true
|