blob: 1cac37c70100dadcedcadde5a7547981cfa961a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
# $FreeBSD$
#
PATH=/bin:/usr/bin:/usr/sbin
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
if [ -d %%PREFIX%%/etc/shellinabox ]; then
echo "===> You may delete '%%PREFIX%%/etc/shellinabox' if you want to remove the SSL certificate left."
fi
|