mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-07 21:06:48 +08:00
17 lines
255 B
Bash
Executable File
17 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Set permissions
|
|
user="$(id -u)"
|
|
if [ "$PUID" = "" ]; then
|
|
PUID="1883"
|
|
fi
|
|
if [ "$PGID" = "" ]; then
|
|
PGID="1883"
|
|
fi
|
|
if [ "$user" = '0' ]; then
|
|
[ -d "/mosquitto/data" ] && chown -R ${PUID}:${PGID} /mosquitto/data || true
|
|
fi
|
|
|
|
exec "$@"
|