mirror of
https://github.com/umputun/reproxy.git
synced 2025-06-30 22:13:42 +02:00
16 lines
299 B
Bash
16 lines
299 B
Bash
![]() |
#!/sbin/dinit /bin/sh
|
||
|
|
||
|
uid=$(id -u)
|
||
|
|
||
|
if [[ ${uid} -eq 0 ]]; then
|
||
|
echo "init container"
|
||
|
|
||
|
# set container's time zone
|
||
|
cp /usr/share/zoneinfo/${TIME_ZONE} /etc/localtime
|
||
|
echo "${TIME_ZONE}" >/etc/timezone
|
||
|
echo "set timezone ${TIME_ZONE} ($(date))"
|
||
|
fi
|
||
|
|
||
|
echo "execute \"$@\""
|
||
|
exec $@
|