VirtualBox

Changeset 94136 in vbox


Ignore:
Timestamp:
Mar 8, 2022 6:19:48 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150385
Message:

Main/Unattended: ​​bugref:9781. Disabling unattended install for OL older than 6.4.

File:
1 edited

Legend:

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

    r94079 r94136  
    35723572        }
    35733573    }
     3574    /* Earlier than OL 6.4 cannot be installer. OL 6.x fails with unsupported hardware error (CPU family). */
     3575    if (mEnmOsType == VBOXOSTYPE_Oracle || mEnmOsType == VBOXOSTYPE_Oracle_x64)
     3576    {
     3577        if (RTStrVersionCompare(mStrDetectedOSVersion.c_str(), "6.4") < 0)
     3578        {
     3579            *aIsUnattendedInstallSupported = false;
     3580            return S_OK;
     3581        }
     3582    }
     3583
    35743584    *aIsUnattendedInstallSupported = true;
    35753585    return S_OK;
Note: See TracChangeset for help on using the changeset viewer.

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