Rename kernel parameters expected by callback

Change-Id: I1e754de2aec89e6d6140792565791c1b523ec344
This commit is contained in:
Andrei V. Ostapenko 2017-01-19 21:06:43 +02:00 committed by Andrii Ostapenko
parent 5104e6ae5f
commit 901f96866f
1 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ def main():
There are three mandatory parameters in kernel command line. There are three mandatory parameters in kernel command line.
Ironic prepares these two: Ironic prepares these two:
'api-url' - URL of Ironic API service, 'ironic_api_url' - URL of Ironic API service,
'deployment_id' - UUID of the node in Ironic. 'deployment_id' - UUID of the node in Ironic.
Passed from PXE boot loader: Passed from PXE boot loader:
'BOOTIF' - MAC address of the boot interface, 'BOOTIF' - MAC address of the boot interface,
@ -42,11 +42,11 @@ def main():
BOOTIF=01-88-99-aa-bb-cc-dd BOOTIF=01-88-99-aa-bb-cc-dd
""" """
kernel_params = utils.parse_kernel_cmdline() kernel_params = utils.parse_kernel_cmdline()
api_url = kernel_params.get('api-url') api_url = kernel_params.get('ironic_api_url')
deployment_id = kernel_params.get('deployment_id') deployment_id = kernel_params.get('deployment_id')
if api_url is None or deployment_id is None: if api_url is None or deployment_id is None:
_process_error('Mandatory parameter ("api-url" or "deployment_id") is ' _process_error('Mandatory parameter ("ironic_api_url" or '
'missing.') '"deployment_id") is missing.')
bootif = kernel_params.get('BOOTIF') bootif = kernel_params.get('BOOTIF')
if bootif is None: if bootif is None: