Module for managing timezone on posix-like systems.
Get current hardware clock setting (UTC or localtime)
CLI Example:
salt '*' timezone.get_hwclock
Get current numeric timezone offset from UCT (i.e. -0700)
CLI Example:
salt '*' timezone.get_offset
Get current timezone (i.e. America/Denver)
CLI Example:
salt '*' timezone.get_zone
Get current timezone (i.e. PST, MDT, etc)
CLI Example:
salt '*' timezone.get_zonecode
Sets the hardware clock to be either UTC or localtime
CLI Example:
salt '*' timezone.set_hwclock UTC
Unlinks, then symlinks /etc/localtime to the set timezone
CLI Example:
salt '*' timezone.set_zone 'America/Denver'