salt.modules.win_timezone

Module for managing timezone on Windows systems.

salt.modules.win_timezone.get_hwclock()

Get current hardware clock setting (UTC or localtime)

CLI 范例:

salt '*' timezone.get_hwclock
salt.modules.win_timezone.get_offset()

Get current numeric timezone offset from UCT (i.e. -0700)

CLI 范例:

salt '*' timezone.get_offset
salt.modules.win_timezone.get_zone()

Get current timezone (i.e. America/Denver)

CLI 范例:

salt '*' timezone.get_zone
salt.modules.win_timezone.get_zonecode()

Get current timezone (i.e. PST, MDT, etc)

CLI 范例:

salt '*' timezone.get_zonecode
salt.modules.win_timezone.set_hwclock(clock)

Sets the hardware clock to be either UTC or localtime

CLI 范例:

salt '*' timezone.set_hwclock UTC
salt.modules.win_timezone.set_zone(timezone)

Unlinks, then symlinks /etc/localtime to the set timezone.

The timezone is crucial to several system processes, each of which SHOULD be restarted (for instance, whatever you system uses as its cron and syslog daemons). This will not be magically done for you!

CLI 范例:

salt '*' timezone.set_zone 'America/Denver'
salt.modules.win_timezone.zone_compare(timezone)

Checks the md5sum between the given timezone, and the one set in /etc/localtime. Returns True if they match, and False if not. Mostly useful for running state checks.

范例:

salt '*' timezone.zone_compare 'America/Denver'