bicycle-statistics/run.sh
Thomas Klaehn e23a36e734 bicycle-statistics: Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2018-07-26 15:37:25 +02:00

17 lines
240 B
Bash
Executable File

#!/bin/bash
/etc/init.d/mosquitto start
sleep 1
/usr/local/bin/bicycle-stat /bs_in /bs_out
# if argument(s) given - execute argument(s) in container. Otherwise loop.
if [ "$#" -gt 0 ]; then
exec $@
else
while :;
do
sleep 1
done
fi