blob: 8c96ed4708147280e974e7aaa90d6b310b39dba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# Set system timezone
#
cloud_config: |
#cloud-config
timezone: US/Aleutian
collect_scripts:
timezone: |
#!/bin/bash
# date will convert this to system's configured time zone.
# use a static date to avoid dealing with daylight savings.
date "+%Z" --date="Thu, 03 Nov 2016 00:47:00 -0400"
# vi: ts=4 expandtab
|