#!/bin/bash
if [ -f /etc/layerops/timezone ]
then
  LOCAL_TIMEZONE=$(cat /etc/layerops/timezone)
fi
timedatectl set-timezone ${LOCAL_TIMEZONE:-UTC}
