mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-02 03:35:53 +00:00
8 lines
130 B
Bash
8 lines
130 B
Bash
#!/bin/sh
|
|
set -e
|
|
if [ "$(id -u)" -eq 0 ]; then
|
|
chown -R meshchat:meshchat /config
|
|
exec su-exec meshchat "$@"
|
|
fi
|
|
exec "$@"
|