Line 168 of kickstart.py refers to a nonexistent function, isys.hardDriveList(): drives = isys.hardDriveList ().keys() This should instead be isys.hardDriveDict(): drives = isys.hardDriveDict().keys() Refer to lines 27-28 in raidstart-stub for a correct call.
Thanks patching now.