summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Donald2024-02-08 20:42:11 +0000
committerRobert Marko2024-09-17 10:36:03 +0000
commit64b38f3bd564eda2a473fbb06cf0fa56f54ec10e (patch)
treed28b5e247184bdde4511bc78023c70a418b75a43
parent89759ee4bb9f48d744cd1a176d9b6e56f91b9047 (diff)
downloadopenwrt-64b38f3bd564eda2a473fbb06cf0fa56f54ec10e.tar.gz
lldpd: remove unneeded quotes and variable quoting
from commit c98ee4dbb3db0f064d990941cdd82e872da76946 agent-type takes 1 of 3 possible keywords which do not require quoting: configure lldp agent-type nearest-bridge | nearest-non-tpmr-bridge | nearest-customer-bridge Tested on 22.03.5 Signed-off-by: Paul Donald <newtwen@gmail.com> (cherry picked from commit 24a4da527f7e70d9916439a78298de2f4e4af653) Link: https://github.com/openwrt/openwrt/pull/15299 Signed-off-by: Robert Marko <robimarko@gmail.com>
-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 3fc47bb3e3..243a32c937 100644
--- a/package/network/services/lldpd/files/lldpd.init
+++ b/package/network/services/lldpd/files/lldpd.init
@@ -153,7 +153,7 @@ write_lldpd_conf()
echo "configure med fast-start enable" >> "$LLDPD_CONF"
fi
fi
- [ -n "$lldp_agenttype" ] && echo "configure lldp agent-type" "\"$lldp_agenttype\"" >> "$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"