freebsd-ports/net-mgmt/rackmonkey/pkg-deinstall
Philip M. Gollucci 82a7ae01b2 RackMonkey is a web-based tool for managing racks of equipment
such as web servers, video encoders, routers and storage devices.
Using a simple interface you can keep track of what's where,
which OS it runs, when it was purchased, who it belongs and what
it's used for.

WWW: http://flux.org.uk/projects/rackmonkey/

PR:		ports/143750
Submitted by:	Eric F Crist <ecrist at secure-computing.net>
2010-02-12 19:27:38 +00:00

16 lines
469 B
Bash

#!/bin/sh
#
# Check for an sqlite file and print a message if there is one.
if [ $2 = "POST-DEINSTALL" ]; then
if [ -e ${WWWDIR}/rackmonkey.db ]; then
echo; echo; echo;
echo " ******************************"
echo " * NOTICE *"
echo " ******************************"
echo "If you no longer need it, you may delete "
echo "${WWWDIR}/rackmonkey.db"
echo "and it's parent directory, ${WWWDIR}"
echo; echo; echo;
fi
fi