File: timezone.yaml

package info (click to toggle)
cloud-init 20.2-2~deb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,276 kB
  • sloc: python: 69,663; sh: 3,915; makefile: 105; xml: 21
file content (16 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (2)
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