forked from Lainports/freebsd-ports
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>
16 lines
514 B
Bash
16 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
|