#!/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