Skip to content
Snippets Groups Projects
Commit ebac7c6b authored by Adam Wujek's avatar Adam Wujek
Browse files

[BUG: #315] rootfs/etc/init.d/lldpd.sh: respect CONFIG_LLDPD_TX_INTERVAL value


Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent dbe7b264
Branches
Tags
No related merge requests found
......@@ -52,7 +52,7 @@ start() {
# check if given value is an int
case $tx_int in
''|*[!0-9]*) echo -n "wrong CONFIG_LLDPD_TX_INTERVAL "$tx_int". Using 5 as the default interval. " ;;
*) echo tx_interval=$tx_int ;;
*) tx_interval=$tx_int ;;
esac
fi
echo "configure lldp tx-interval $tx_interval" >> $LLDPD_CONFIG
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment