From bb31faa7c95ff6df6bc26d0c685b0e132d8f45c4 Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Mon, 23 May 2016 18:16:57 +0000 Subject: [PATCH] Fix inspection_enable_uefi description There is a missing space in this opt's help, and additionally it was never added to the sample config file. Change-Id: Iceda6b759b80d66a04694fe5122aa1df194d2365 (cherry picked from commit 87d60a6569848af81453ca586a3503e2c7747d17) Closes-Bug: 1590077 --- instack_undercloud/undercloud.py | 2 +- undercloud.conf.sample | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/instack_undercloud/undercloud.py b/instack_undercloud/undercloud.py index f7f979d57..0c31b8fde 100644 --- a/instack_undercloud/undercloud.py +++ b/instack_undercloud/undercloud.py @@ -182,7 +182,7 @@ _opts = [ ), cfg.BoolOpt('inspection_enable_uefi', default=False, - help=('Whether to support introspection of nodes that have' + help=('Whether to support introspection of nodes that have ' 'UEFI-only firmware.') ), cfg.BoolOpt('undercloud_debug', diff --git a/undercloud.conf.sample b/undercloud.conf.sample index 3763a9c35..9eacbcd13 100644 --- a/undercloud.conf.sample +++ b/undercloud.conf.sample @@ -85,6 +85,10 @@ # Deprecated group/name - [DEFAULT]/discovery_runbench #inspection_runbench = false +# Whether to support introspection of nodes that have UEFI-only +# firmware. (boolean value) +#inspection_enable_uefi = false + # Whether to enable the debug log level for Undercloud OpenStack # services. (boolean value) #undercloud_debug = true