Index: branches/releng-11/nanobsd/files/tools/wl-config
===================================================================
--- branches/releng-11/nanobsd/files/tools/wl-config	(revision 14164)
+++ branches/releng-11/nanobsd/files/tools/wl-config	(revision 14172)
@@ -11,4 +11,12 @@
 
 check_access() {
+  if [ -n "$BASEURL" ]; then
+     # Custom URL
+     fetch -o /dev/null -q $BASEURL > /dev/null && return
+     echo "# CRIT: Fetch via custom $BASEURL failed"
+     # Do no check alternative routes, operator knows best
+     exit 1
+  fi
+
   # Direct Access - External
   BASEURL="http://wirelessleiden.nl/config/"
@@ -25,6 +33,7 @@
   BASEURL="http://80.127.152.29/wleiden/config/"
   fetch -o /dev/null -q $BASEURL > /dev/null && return
-  echo "# CRIT: Fetch via external $BASEURL failed"
-
+  echo "# WARN: Fetch via external $BASEURL failed"
+
+  echo "# CRIT: No more fetch options available, bailing out"
   exit 1
 }
