diff options
author | Dan Radez <dradez@redhat.com> | 2018-02-21 07:53:47 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2018-02-21 14:58:36 -0500 |
commit | fcec435be9f24fd9b0d9eba8b7443bb7dc241949 (patch) | |
tree | b6c6188ff8c3f0510e7cb3bbc74109d5f8554035 | |
parent | 3ed11a41b3aa792fc11e79b010f2366eb94f9d49 (diff) |
Typo fix for disabling ipxe
JIRA: APEX-535
Change-Id: If1d074d01246407b322d5a4bc27dfde35349e9db
Signed-off-by: Dan Radez <dradez@redhat.com>
-rw-r--r-- | apex/undercloud/undercloud.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apex/undercloud/undercloud.py b/apex/undercloud/undercloud.py index a70c465a..915c85f3 100644 --- a/apex/undercloud/undercloud.py +++ b/apex/undercloud/undercloud.py @@ -205,8 +205,9 @@ class Undercloud: "undercloud_update_packages false", "undercloud_debug false", "inspection_extras false", - "ipxe {}".format(str(ds['global_params'].get('ipxe', True) and - not config['aarch64'])), + "ipxe_enabled {}".format( + str(ds['global_params'].get('ipxe', True) and + not config['aarch64'])), "undercloud_hostname undercloud.{}".format(ns['dns-domain']), "local_ip {}/{}".format(str(ns_admin['installer_vm']['ip']), str(ns_admin['cidr']).split('/')[1]), |