Skip to content

Commit

Permalink
Merge pull request #457 from cgull/fix-utctime-default
Browse files Browse the repository at this point in the history
The default of utctime=yes was lost; restore it.
  • Loading branch information
churchers authored Apr 6, 2022
2 parents 779b730 + d7d23bc commit ec0e12e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vm-run
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ vm::run(){
[ -n "${_uuid}" ] && _opts="${_opts} -U ${_uuid}"

# set utc time in opts if requested
if config::yesno "utctime"; then
if config::yesno "utctime" yes; then
if [ ${VERSION_BSD} -ge 1002000 ]; then
_opts="${_opts} -u"
else
Expand Down

0 comments on commit ec0e12e

Please sign in to comment.