From 011ba663146e58205429f19bfb6cadf8f751da58 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 1 Mar 2017 10:24:23 -0500 Subject: [PATCH] Add a -u option for symmetry with rsetboot If people want to alias xCAT commands, then this is required for compatibility. --- confluent_client/bin/nodesetboot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/confluent_client/bin/nodesetboot b/confluent_client/bin/nodesetboot index bbe71d46..65f8aaeb 100755 --- a/confluent_client/bin/nodesetboot +++ b/confluent_client/bin/nodesetboot @@ -35,6 +35,9 @@ argparser.add_option('-p', '--persist', dest='persist', action='store_true', default=False, help='Request the boot device be persistent rather than ' 'one time') +argparser.add_option('-u', '--uefi', dest='uefi', action='store_true', + default=True, + help='Request UEFI style boot (rather than BIOS)') (options, args) = argparser.parse_args()