1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/www/raqdevil/files/warning
Edwin Groothuis f184aa122d new port www/raqdevil
This pr is a duplicate of ports/87108, which doesn't have the shar.

	This shar creates a raqdevil/ directory which is suitable
	for addition in the FreeBSD ports tree.

        From the pkg-descr:

	RAQdevil is a web control panel application, developed by
	OffMyServer and based upon the Sun Cobalt RaQ550 software.
	The RAQdevil is software that provides web based management
	of multiple aspects of a server. RAQdevil manages system
	users, web sites, email, DNS, and other common server
	components used for web hosting.

        http://www.raqdevil.com/

	I submitted a shar for 0.9 as well, but cannot find the
	original report via the web interface. This shar supercedes
	0.9.

PR:		ports/87129
Submitted by:	Devon H. O'Dell <dodell@offmyserver.com>
2005-10-31 11:25:56 +00:00

17 lines
514 B
Bash

#!/bin/sh
echo "WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING"
echo ""
echo "This port installs configuration files and is designed to automate"
echo "administration of your system as a web server. As such, existing"
echo "configurations may be overwritten. It is recommended to _only_ install"
echo "this port on unconfigured machines."
echo ""
echo -n "Do you want to install this port (Y/N)? "
read answer
if [ "x"$answer = "xY" -o "x"$answer = "xy" ]; then
exit 0
else
exit 1;
fi