blob: 5112aa9fe10f1124e6da8f46ce74659d96b13831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# Set system timezone
#
required_features:
- daylight_time
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
|