mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
21 lines
226 B
Plaintext
21 lines
226 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
USER=popa3d
|
||
|
GROUP=popa3d
|
||
|
|
||
|
case $2 in
|
||
|
DEINSTALL)
|
||
|
|
||
|
;;
|
||
|
POST-DEINSTALL)
|
||
|
pw groupdel $GROUP
|
||
|
pw userdel $USER
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 <pkg-name>
|
||
|
{DEINSTALL|POST-DEINSTALL}"
|
||
|
exit 64
|
||
|
esac
|
||
|
|
||
|
exit 0
|