Change it from "c0d0" to "cciss/c0d0" since that's the format the kickstart commands expect. --- command-stubs/list-harddrives-stub | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/command-stubs/list-harddrives-stub b/command-stubs/list-harddrives-stub index 4025186..25d9eb0 100755 --- a/command-stubs/list-harddrives-stub +++ b/command-stubs/list-harddrives-stub @@ -27,7 +27,8 @@ def main(argv): lst = set() for dev in filter(lambda d: d.type != parted.DEVICE_DM, parted.getAllDevices()): - lst.add((os.path.basename(dev.path), dev.getSize())) + path = dev.path.lstrip("/dev/") + lst.add((path, dev.getSize())) lst = list(lst) lst.sort() -- 1.7.4.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list