mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
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]
14 lines
160 B
Bash
14 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
|