mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
82a7ae01b2
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>
17 lines
469 B
Bash
17 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
|