packer-builds

Packer Builds for LXC and Libvirt
git clone https://git.in0rdr.ch/packer-builds.git
Log | Files | Refs | Pull requests | README

timezone.sh (322B)


      1 #!/usr/bin/env bash
      2 
      3 set -o errexit
      4 set -o nounset
      5 set -o xtrace
      6 
      7 # symlink the proper timezone file,
      8 # https://wiki.debian.org/TimeZoneChanges
      9 ln -fs /usr/share/zoneinfo/Europe/Zurich /etc/localtime
     10 
     11 # reconfigure tzdata package to udpate /etc/timezone
     12 dpkg-reconfigure --frontend noninteractive tzdata
     13 cat /etc/timezone