commit 7f651d102df6446d19fa6d7c89065c49553675f3
parent 41682a4258bf4f0db953c7ecd4452414a7bc45ba
Author: Karl Palsson <karlp@etactica.com>
Date: Tue, 30 Aug 2016 11:39:46 +0000
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>
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net/mosquitto/files/etc/init.d/mosquitto b/net/mosquitto/files/etc/init.d/mosquitto
@@ -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
}