Browse Source

net/mosquitto: chown data directory

The package creates a "mosquitto" user, but the support added for
persistence creates the data directory as root running the init script.
Properly chown the newly created directory to ensure it's writable.

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

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

@ -76,7 +76,10 @@ convert_persistence() {
append_if "$cfg" file persistence_file
config_get loc "$cfg" location
if [ -n "$loc" ]; then
[ -d "$loc" ] || mkdir -p "$loc";
[ -d "$loc" ] || {
mkdir -p "$loc";
chown mosquitto "$loc";
}
echo "persistence_location $loc" >> $TCONF
fi
}


Loading…
Cancel
Save