diff options
Diffstat (limited to 'www/raqdevil/files/warning')
-rw-r--r-- | www/raqdevil/files/warning | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/raqdevil/files/warning b/www/raqdevil/files/warning new file mode 100644 index 000000000000..6b35a3aa6e43 --- /dev/null +++ b/www/raqdevil/files/warning @@ -0,0 +1,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 |