Files
cloudron-box/src/scripts/settimezone.sh
T
Girish Ramakrishnan bf280bcd65 Set cloudron timezone based on ip
Part of #355
2015-04-27 22:57:40 -07:00

20 lines
334 B
Bash
Executable File

#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# == 1 && "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
if [[ "${NODE_ENV}" == "cloudron" ]]; then
echo "$1" > /etc/timezone
dpkg-reconfigure -f noninteractive tzdata
fi