mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-08 02:15:08 +00:00
852d38311c
PR: ports/85634 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
16 lines
365 B
Bash
16 lines
365 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
cat << "EOF"
|
|
===============================================================================
|
|
Micro_proxy has been successfully deinstalled. If you ran it with inetd(8) make
|
|
sure you remove all the manual configuration.
|
|
===============================================================================
|
|
EOF
|
|
;;
|
|
esac
|