mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
15 lines
227 B
Bash
Executable File
15 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
zonename="$1"
|
|
|
|
tzpath="/usr/share/zoneinfo/$zonename"
|
|
|
|
if [ -e "$tzpath" ] ; then
|
|
cp "$tzpath" /etc/localtime
|
|
echo "$zonename" > /etc/timezone
|
|
exit 0
|
|
else
|
|
echo "timezone not valid" 1>&2
|
|
exit 1
|
|
fi
|