VirtualBox

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


Ignore:
Timestamp:
May 23, 2022 4:21:19 PM (3 years ago)
Author:
vboxsync
Message:

Validation Kit/Unattended tests: bugref:9781. Disabling unattended install for debians older than 9.0.

File:
1 edited

Legend:

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

    r94748 r95064  
    36383638        }
    36393639    }
     3640    /* Old Debians fail since package repos have been move to some other mirror location. */
     3641    if (mEnmOsType == VBOXOSTYPE_Debian || mEnmOsType == VBOXOSTYPE_Debian_x64)
     3642    {
     3643        if (RTStrVersionCompare(mStrDetectedOSVersion.c_str(), "9.0") < 0)
     3644        {
     3645            *aIsUnattendedInstallSupported = false;
     3646            return S_OK;
     3647        }
     3648    }
    36403649
    36413650    *aIsUnattendedInstallSupported = true;
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