From: Roman Bogorodskiy
Caveat: bootloader_args
does not support any quoting.
Filenames, etc, must not have spaces or they will be tokenized incorrectly.
Originally bhyve supported only localtime for RTC. Support for UTC time was introduced in +r284894 for 10-STABLE and +in r279225 for -CURRENT. +It's possible to use this in libvirt since 1.2.18, just place the +following to domain XML:
+ ++<domain type="bhyve"> + ... + <clock offset='utc'/> + ... +</domain> ++ +
Please note that if you run the older bhyve version that doesn't support UTC time, you'll +fail to start a domain. As UTC is used as a default when you do not specify clock settings, +you'll need to explicitly specify 'localtime' in this case:
+ ++<domain type="bhyve"> + ... + <clock offset='localtime'/> + ... +</domain> ++