small-package/luci-app-sms-tool/root/sbin/smsled-init.sh

22 lines
410 B
Bash

#!/bin/sh
# Copyright 2020-2022 Rafał Wabik (IceG) - From eko.one.pl forum
# Licensed to the GNU General Public License v3.0.
sleep 10
CT=$(uci -q get sms_tool.general.checktime)
TX=$(echo $CT | tr -dc '0-9')
TM=$(($TX * 60))
while [ 1 ]; do
LED=$(uci -q get sms_tool.general.lednotify)
if [ $LED == "1" ]; then
sleep $TM
(/sbin/smsled.sh >/dev/null 2>&1 )&
continue
fi
sleep 1
done
exit 0