summaryrefslogtreecommitdiffstats
path: root/package/network
diff options
context:
space:
mode:
authorPaul Donald <newtwen@gmail.com>2024-02-08 23:37:13 +0100
committerRobert Marko <robimarko@gmail.com>2024-03-11 09:58:20 +0100
commit79ee4cb0397eb9eae34369e33d66b5a1d837a652 (patch)
tree87cfd817ba2b89bdb663a5b90e9ef9a46b8fdfab /package/network
parent228d4e7f1b759c11897043dc73ef3c576bc13f7f (diff)
downloadopenwrt-79ee4cb0397eb9eae34369e33d66b5a1d837a652.tar.gz
openwrt-79ee4cb0397eb9eae34369e33d66b5a1d837a652.tar.bz2
openwrt-79ee4cb0397eb9eae34369e33d66b5a1d837a652.zip
lldpd: fix error "sh: XXXms: bad number"
from commit 3ce909914a12647bec52bcee0a162dd6d158a4f6 The lldpd man page says that "configure lldp tx-interval" can specify an interval value in milliseconds by appending a "ms" suffix to the figure. Thus mandating string handling, and not integer comparison. Tested on 22.03.5 Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'package/network')
-rw-r--r--package/network/services/lldpd/files/lldpd.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/lldpd/files/lldpd.init b/package/network/services/lldpd/files/lldpd.init
index e13128e2d6..97c572d347 100644
--- a/package/network/services/lldpd/files/lldpd.init
+++ b/package/network/services/lldpd/files/lldpd.init
@@ -148,7 +148,7 @@ write_lldpd_conf()
[ -n "$lldp_agenttype" ] && echo "configure lldp agent-type $lldp_agenttype" >> "$LLDPD_CONF"
[ -n "$lldp_portidsubtype" ] && echo "configure lldp portidsubtype $lldp_portidsubtype" >> "$LLDPD_CONF"
[ -n "$lldp_platform" ] && echo "configure system platform" "\"$lldp_platform\"" >> "$LLDPD_CONF"
- [ $lldp_tx_interval -gt 0 ] && echo "configure lldp tx-interval $lldp_tx_interval" >> "$LLDPD_CONF"
+ [ -n $lldp_tx_interval ] && echo "configure lldp tx-interval $lldp_tx_interval" >> "$LLDPD_CONF"
[ $lldp_tx_hold -gt 0 ] && echo "configure lldp tx-hold $lldp_tx_hold" >> "$LLDPD_CONF"
# Since lldpd's sysconfdir is /tmp, we'll symlink /etc/lldpd.d to /tmp/$LLDPD_CONFS_DIR