Hi, I'm looking for a way to accurately specify the timezone of a VM at VM creation
time.
At the moment all VMs that get created using a simple in-house python script are set with
a GMT timezone e.g.:
if ( "windows" in OS ):
vm_tz="GMT Standard Time"
else:
vm_tz="Etc/GMT"
Is there a better way to choose a more appropriate timezone based on the VMs global
location?
is there a way to get a list of ovirt supported time zones for Windows and Linux and
compare that with the VMs location and OS type and then choose an appropriate timezone?