summaryrefslogtreecommitdiff
path: root/templates/system/time-zone
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@sydney.vyatta.com>2007-10-19 11:26:15 -0700
committerAn-Cheng Huang <ancheng@sydney.vyatta.com>2007-10-19 11:26:15 -0700
commit07183520f3f4d2f89e526055db418046d0d2450f (patch)
tree7968eac48a0a57ff97ec4769d999bf31348a2a12 /templates/system/time-zone
parent66b621cf7759c3448ae8bfe7d7479fb13ea04b65 (diff)
downloadvyatta-cfg-quagga-07183520f3f4d2f89e526055db418046d0d2450f.tar.gz
vyatta-cfg-quagga-07183520f3f4d2f89e526055db418046d0d2450f.zip
move "system" configuration templates/scripts from vyatta-cfg.
Diffstat (limited to 'templates/system/time-zone')
-rw-r--r--templates/system/time-zone/node.def16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/system/time-zone/node.def b/templates/system/time-zone/node.def
new file mode 100644
index 00000000..00da0133
--- /dev/null
+++ b/templates/system/time-zone/node.def
@@ -0,0 +1,16 @@
+type: txt
+help: "Configure local timezone"
+default: "GMT"
+update: "LTF=\"/usr/share/zoneinfo\" && \
+case \"$(@)\" in \
+ [Ll][Oo][Ss]*) LTF=\"\\\$LTF/US/Pacific\" ;; \
+ [Dd][Ee][Nn]*) LTF=\"\\\$LTF/US/Mountain\" ;; \
+ [Hh][Oo][Nn]*) LTF=\"\\\$LTF/US/Hawaii\" ;; \
+ [Nn][Ee][Ww]*) LTF=\"\\\$LTF/US/Eastern\" ;; \
+ [Cc][Hh][Ii]*) LTF=\"\\\$LTF/US/Central\" ;; \
+ [Aa][Nn][Cc]*) LTF=\"\\\$LTF/US/Alaska\" ;; \
+ [Pp][Hh][Oo]*) LTF=\"\\\$LTF/US/Arizona\" ;; \
+ *) LTF=\"\\\$LTF/Etc/$(@)\" ;; \
+esac && \
+ln -fs \\\$LTF /etc/localtime"
+delete: "ln -fs /usr/share/zoneinfo/GMT /etc/localtime"