Changeset 79603 in vbox
- Timestamp:
- Jul 8, 2019 5:02:31 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r79602 r79603 461 461 elif oDiskCfg.getTargetOs() == 'linux': 462 462 oStorOs = StorageConfigOsLinux(); # pylint: disable=redefined-variable-type 463 elif not oDiskCfg.isCfgStaticDir(): # For unknown hosts we only allow a static testing directory we don't care about setting up. 463 elif not oDiskCfg.isCfgStaticDir(): 464 # For unknown hosts only allow a static testing directory we don't care about setting up 464 465 fRc = False; 465 466 … … 473 474 self.lstDisks.append(StorageDisk(sDisk)); 474 475 elif oDiskCfg.isCfgStaticDir(): 475 476 476 if not os.path.exists(oDiskCfg.getDisks()): 477 self.oExec.mkDir(oDiskCfg.getDisks(), 0o700); 477 478 478 479 def __del__(self):
Note:
See TracChangeset
for help on using the changeset viewer.