Merge pull request #751 from yodax/wgetrc

Add a preflight check for ~/.wgetrc
This commit is contained in:
Joshua Tauberer 2016-03-11 10:29:24 -05:00
commit 65add24e2a
1 changed files with 6 additions and 0 deletions

View File

@ -40,3 +40,9 @@ if [ -n "$MOUNTED_TMP_AS_NO_EXEC" ]; then
echo "Mail-in-a-Box has to have exec rights on /tmp, please mount /tmp with exec"
exit
fi
# Check that no .wgetrc exists
if [ -e ~/.wgetrc ]; then
echo "Mail-in-a-Box expects no overrides to wget defaults, ~/.wgetrc exists"
exit
fi