2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-12-25 04:32:11 +00:00

Allow nodeboot to harmlessly take -u

It doesn't actually change behavior, but request for compatibility
is being honored.
This commit is contained in:
Jarrod Johnson 2018-08-30 09:39:20 -04:00
parent 7c9089c87d
commit 118d1aec0d

View File

@ -35,6 +35,9 @@ argparser = optparse.OptionParser()
argparser.add_option('-b', '--bios', dest='biosmode',
action='store_true', default=False,
help='Request BIOS style boot (rather than UEFI)')
argparser.add_option('-u', '--uefi', dest='uefimode',
action='store_true', default=False,
help='Request UEFI style boot (rather than BIOS)')
argparser.add_option('-p', '--persist', dest='persist', action='store_true',
default=False,
help='Request the boot device be persistent rather than '