From 7f651d102df6446d19fa6d7c89065c49553675f3 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Tue, 30 Aug 2016 11:39:46 +0000 Subject: [PATCH] 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 --- net/mosquitto/files/etc/init.d/mosquitto | 5 ++++- 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 index 564190882..adb31a397 100755 --- 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 }