mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
21 lines
325 B
Bash
21 lines
325 B
Bash
#!/bin/sh
|
|
|
|
# default timezone
|
|
if [ ! -n "$TZ" ]; then
|
|
export TZ="Asia/Shanghai"
|
|
fi
|
|
|
|
# set timezone
|
|
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
|
|
echo $TZ > /etc/timezone
|
|
|
|
|
|
# HOST绑定
|
|
if [[ ! -z "$CLOUD_HOSTBIND_NAME" ]]; then
|
|
echo "$CLOUD_HOSTBIND_NAME" >> /etc/hosts
|
|
fi
|
|
|
|
if [ ! -z "$1" ]; then
|
|
exec "$@"
|
|
fi
|