Index: /trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
===================================================================
--- /trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py	(revision 66529)
+++ /trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py	(revision 66530)
@@ -152,6 +152,6 @@
         Creates a new storage pool with the given disks and the given RAID level.
         """
-        sZPoolRaid = None
-        if sRaidLvl == 'raid5' or sRaidLvl is None:
+        sZPoolRaid = None;
+        if len(asDisks) > 1 and (sRaidLvl == 'raid5' or sRaidLvl is None):
             sZPoolRaid = 'raidz';
 
@@ -160,5 +160,5 @@
             fRc = oExec.execBinaryNoStdOut('zpool', ('create', '-f', sPool, sZPoolRaid,) + tuple(asDisks));
         else:
-            fRc = False;
+            fRc = oExec.execBinaryNoStdOut('zpool', ('create', '-f', sPool,) + tuple(asDisks));;
 
         return fRc;
@@ -225,5 +225,5 @@
         oDisk = None;
         sRamDiskName = 'ramdisk%u' % (self.idxRamDisk,);
-        fRc, sOut, _ = oExec.execBinary('ramdiskadm', '-a', sRamDiskName, str(cbRamDisk));
+        fRc, sOut, _ = oExec.execBinary('ramdiskadm', ('-a', sRamDiskName, str(cbRamDisk)));
         if fRc:
             self.idxRamDisk += 1;
