source: genesis/tools/update-wlconfig@ 10522

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

More fancy updater...

  • Property svn:executable set to *
File size: 624 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 please wait..."
19$CLI $CLI_ARGS $INTERNAL_URL || $CLI $CLI_ARGS $EXTERNAL_URL
Note: See TracBrowser for help on using the repository browser.