mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
7 lines
130 B
Bash
7 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 "$@"
|