05_set_the_time.sh 137 B

12345
  1. #!/bin/bash
  2. if [[ $(cat /etc/timezone) != $TZ ]] ; then
  3. echo "$TZ" > /etc/timezone
  4. exec dpkg-reconfigure -f noninteractive tzdata
  5. fi