blob: 6b35a3aa6e43f692b89324a146d9c8e6a77b0469 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
|