17 lines
247 B
Text
17 lines
247 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
case $2 in
|
||
|
POST-DEINSTALL)
|
||
|
echo "If you completly remove this port, do not forget"
|
||
|
echo "then remove lines included by you in:"
|
||
|
echo ""
|
||
|
echo "crontab"
|
||
|
echo "periodic.conf"
|
||
|
echo "rc.conf"
|
||
|
echo ""
|
||
|
;;
|
||
|
esac
|