mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
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>
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user