From 118d1aec0dce7e8606e269961701f56110dd1675 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 30 Aug 2018 09:39:20 -0400 Subject: [PATCH] Allow nodeboot to harmlessly take -u It doesn't actually change behavior, but request for compatibility is being honored. --- confluent_client/bin/nodeboot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/confluent_client/bin/nodeboot b/confluent_client/bin/nodeboot index 0c2d53bf..a39e4c42 100755 --- a/confluent_client/bin/nodeboot +++ b/confluent_client/bin/nodeboot @@ -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 '