mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
10 lines
413 B
Bash
Executable file
10 lines
413 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test "$1" = "-h" && echo -e "Usage:\n\t$0 -h\n\t$0 [ { ip | hostname } ]" >&2 && exit 1
|
|
|
|
host="${1:-leipzig.freifunk.net}"
|
|
|
|
wget -O /dev/null http://$host/cgi-bin-dev-zero.bin
|
|
test "$?" = "1" && wget -O /dev/null http://$host/cgi-bin/dev-zero.bin
|
|
test "$?" = "1" && wget -O /dev/null http://$host/cgi-bin/luci/freifunk/status/zeroes
|
|
test "$?" = "1" && echo "$host: no zero download found..." && exit 1
|