VirtualBox

Changeset 79910 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Jul 21, 2019 12:11:37 PM (6 years ago)
Author:
vboxsync
Message:

Main/Unattended: Avoid set timezone to 'localtime' as it breaks ubuntu install. TZ is set to localtime on at least one testbox, so just refuse it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/UnattendedImpl.cpp

    r79417 r79910  
    10441044        {
    10451045            int vrc = RTTimeZoneGetCurrent(szTmp, sizeof(szTmp));
    1046             if (RT_SUCCESS(vrc))
     1046            if (   RT_SUCCESS(vrc)
     1047                && strcmp(szTmp, "localtime") != 0 /* Typcial solaris TZ that isn't very helpful. */)
    10471048                mStrTimeZone = szTmp;
    10481049            else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette