Displaying 3 results from an estimated 3 matches for "dev_choic".
Did you mean:
dev_choice
2009 Sep 14
2
[PATCH node-image] add livecd-iso-to-iscsi script to support iscsi root booting setup
...basename=os.path.basename(udi)
+ if dev_bus == "scsi":
+ print "%s. %s %sM %s \n" % (dev_count,dev_name,dev_size,basename)
+ dev_dict[str(dev_count)] = dev_name
+ dev_count = dev_count + 1
+ print "Enter Q to Quit"
+ dev_choice = raw_input("Which device? ")
+ while not dev_dict.has_key(dev_choice):
+ if dev_choice.lower() == "q":
+ print "Aborting"
+ sys.exit(1)
+ else:
+ print "%s is an invalid choice" % dev_choice
+ dev_c...
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node.
Removed tools, these are now in ovirt-node-recipe which is subpackage of
ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe.
Removes old sub packages form ovirt-node, stateless, logos, selinux.
Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221
Added License file.