Browse Source

net/mosquitto: fix log_type conversion in config

As reported in: https://github.com/openwrt/packages/issues/15506

Signed-off-by: Karl Palsson <karlp@etactica.com>
lilik-openwrt-22.03
Karl Palsson 3 years ago
parent
commit
e0c33d94f8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      net/mosquitto/files/etc/init.d/mosquitto

+ 1
- 1
net/mosquitto/files/etc/init.d/mosquitto View File

@ -75,7 +75,7 @@ convert_mosq_general() {
append_optional_bool "$1" log_timestamp
config_get log_types "$1" log_types
for log_type in $log_types; do
echo "log_dest $log_type" >> $TCONF
echo "log_type $log_type" >> $TCONF
done
append_if "$1" max_inflight_bytes
append_if "$1" max_inflight_messages


Loading…
Cancel
Save