mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-04-11 01:56:47 +02: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 "$@"
|