aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions17
1 files changed, 17 insertions, 0 deletions
diff --git a/functions b/functions
index f550642..b85de46 100644
--- a/functions
+++ b/functions
@@ -369,6 +369,23 @@ read_crypttab() {
return $failed
}
+set_timezone() {
+ local tz=$1 zonefile=/usr/share/zoneinfo/$tz
+
+ [[ $tz ]] || return 1
+
+ if [[ ! -e $zonefile ]]; then
+ printf "error: \`%s' is not a valid timezone\n" "$tz"
+ return 1
+ fi
+
+ if [[ -L /etc/localtime && /etc/localtime -ef $zonefile ]]; then
+ return 0
+ fi
+
+ ln -sf "/usr/share/zoneinfo/$tz" /etc/localtime
+}
+
# Filesystem functions
# These can be overridden/reused for customizations like shutdown/loop-fsck.
NETFS="nfs,nfs4,smbfs,cifs,codafs,ncpfs,shfs,fuse,fuseblk,glusterfs,davfs,fuse.glusterfs"