summaryrefslogtreecommitdiff
path: root/datasources/internet_speed.sh
diff options
context:
space:
mode:
authorEbus-at-dockstar <ebus@dockstar>2014-07-25 22:13:55 +0200
committerEbus-at-dockstar <ebus@dockstar>2014-07-25 22:13:55 +0200
commitf6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8 (patch)
tree893a37289de684b95a6184c528e5c9c8547e7197 /datasources/internet_speed.sh
parentcfb0c10631bbbd31b525e7992b59de06d3c2e550 (diff)
downloadebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.tar.gz
ebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.zip
embed xexpr-path
Diffstat (limited to 'datasources/internet_speed.sh')
-rwxr-xr-xdatasources/internet_speed.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/datasources/internet_speed.sh b/datasources/internet_speed.sh
deleted file mode 100755
index 2b0b85b..0000000
--- a/datasources/internet_speed.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-. "`dirname \"$0\"`"/datastore-functions.sh
-
-if ! curl --version >/dev/null; then
- echo "missing curl" >&2
- exit 1
-fi
-
-measure_speed() {
- curl --write-out "%{speed_download}" \
- --silent \
- --max-time 60 \
- --output /dev/null \
- "http://speedtest.qsc.de/500kB.qsc" \
- | cut -f 1 -d ','
- return $?
-}
-
-speed=`measure_speed`
-if [ $? = 0 ]; then
- put_value_sensor_now \
- "`hostname`.internet.speed" \
- "$speed"
-else
- put_value_sensor_now \
- "`hostname`.internet.speed" \
- "0"
-fi
-exit $?