1
0
This repository has been archived on 2025-01-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

16 lines
313 B
Bash
Executable File

#!/bin/sh
# Turns on/off IPTV led
restart_lediptv() {
which ledctl >/dev/null || return
# If VoD interface has no IP address, IPTV led is off
local ip; ip=$(cat $WAND/3/ip/ipaddr 2>/dev/null)
if [ "$ip" = '' ]; then
ledctl stv 2>/dev/null
return
fi
# OK, IPTV led is on here
ledctl Stv 2>/dev/null
}