summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Donald2024-02-08 20:31:29 +0000
committerRobert Marko2024-09-17 10:36:03 +0000
commit50135a03a614182c75a51643c365a06e31fa1e8e (patch)
tree69a6a8b1638818bb046a77fb48981a26b6735c60
parent4446346fdd097adaee9d85c4bb610f6ee4156b84 (diff)
downloadopenwrt-50135a03a614182c75a51643c365a06e31fa1e8e.tar.gz
lldpd: remove unneeded quotes
from commit 3ce909914a12647bec52bcee0a162dd6d158a4f6 Tested on 22.03.5 Signed-off-by: Paul Donald <newtwen@gmail.com> (cherry picked from commit 82ec853284e44fb85ad702879d18857bd566c7db) 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 47354f3c4e..6af15691e7 100644
--- a/package/network/services/lldpd/files/lldpd.init
+++ b/package/network/services/lldpd/files/lldpd.init
@@ -150,7 +150,7 @@ write_lldpd_conf()
if [ $lldpmed_fast_start_tx_interval -gt 0 ]; then
echo "configure med fast-start tx-interval $lldpmed_fast_start_tx_interval" >> "$LLDPD_CONF"
else
- echo "configure med fast-start" "enable" >> "$LLDPD_CONF"
+ echo "configure med fast-start enable" >> "$LLDPD_CONF"
fi
fi
[ -n "$lldp_agenttype" ] && echo "configure lldp agent-type" "\"$lldp_agenttype\"" >> "$LLDPD_CONF"