mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2026-01-27 02:23:02 +00:00
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = '/ucentral/ucentralgw' -a "$(id -u)" = '0' ]; then
|
|
if [ "$RUN_CHOWN" = 'true' ]; then
|
|
chown -R "$UCENTRALGW_USER": "$UCENTRALGW_ROOT" "$UCENTRALGW_CONFIG"
|
|
fi
|
|
exec su-exec "$UCENTRALGW_USER" "$@"
|
|
fi
|
|
|
|
exec "$@"
|