mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
13 lines
349 B
Bash
13 lines
349 B
Bash
#!/bin/sh
|
|
|
|
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
|