- Timestamp:
- Jan 11, 2022 11:34:31 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r93115 r93183 695 695 def _installVBoxOnDarwin(self): 696 696 """ Installs VBox on Mac OS X.""" 697 698 # TEMPORARY HACK - START 699 # Don't install the kernel drivers on the testboxes with BigSur and later 700 # Needs a more generic approach but that one needs more effort. 701 sHostName = socket.getfqdn(); 702 if sHostName.startswith('testboxmac10') \ 703 or sHostName.startswith('testboxmac11'): 704 self._fKernelDrivers = False; 705 # TEMPORARY HACK - END 706 697 707 sDmg = self._findFile('^VirtualBox-.*\\.dmg$'); 698 708 if sDmg is None:
Note:
See TracChangeset
for help on using the changeset viewer.