mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-08 16:52:13 +08:00
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/ash
|
|
set -e
|
|
|
|
# Set permissions
|
|
user="$(id -u)"
|
|
if [ "$user" = '0' ]; then
|
|
[ -d "/mosquitto" ] && chown -R mosquitto:mosquitto /mosquitto || true
|
|
fi
|
|
|
|
exec "$@"
|