Typo fix for disabling ipxe 99/52399/2
authorDan Radez <dradez@redhat.com>
Wed, 21 Feb 2018 12:53:47 +0000 (07:53 -0500)
committerDan Radez <dradez@redhat.com>
Wed, 21 Feb 2018 19:58:36 +0000 (14:58 -0500)
JIRA: APEX-535

Change-Id: If1d074d01246407b322d5a4bc27dfde35349e9db
Signed-off-by: Dan Radez <dradez@redhat.com>
apex/undercloud/undercloud.py

index a70c465..915c85f 100644 (file)
@@ -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]),