blob: 954499641f94a113e5e4928d707666d96d93e37d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|