source: genesis/tools/update-wlconfig@ 10565

Last change on this file since 10565 was 10525, checked in by rick, 13 years ago

Show why we continue if the internal fails

  • Property svn:executable set to *
File size: 733 bytes
Line 
1#!/bin/sh
2#
3# Very simple wrapper to update wlconfig.wirelessleiden.nl without the need of
4# a webbrowser
5
6INTERNAL_URL='http://sunny.wleiden.net/wleiden/config/?action=update&source=internal'
7EXTERNAL_URL='http://sunfire.wirelessleiden.nl/wleiden/config/?action=update&source=external'
8CLI=`whereis -b fetch wget curl false | awk '{if ($2) {print $2;exit}}'`
9
10
11case `basename $CLI` in
12 "wget") CLI_ARGS="-O - -nv";;
13 "curl") CLI_ARGS="-o -";;
14 "fetch") CLI_ARGS="-o -";;
15 "false") echo "# no URL fetcher found"; exit 1;;
16esac
17
18echo "# Processing via internal URL ($INTERNAL_URL) please wait..."
19$CLI $CLI_ARGS $INTERNAL_URL || {
20 echo "# Processing via external URL ($EXTERNAL_URL) please wait..."
21 $CLI $CLI_ARGS $EXTERNAL_URL
22}
Note: See TracBrowser for help on using the repository browser.