components/python/ironicclient/patches/01-boot-device-wanboot.patch
author Matt Keenan <matt.keenan@oracle.com>
Fri, 19 Jun 2015 09:35:02 +0100
branchs11-update
changeset 4508 d8924d870370
child 5405 66fd59fecd68
permissions -rw-r--r--
PSARC 2015/172 OpenStack Ironic (OpenStack Bare Metal Provisioning Service) PSARC 2015/070 pecan - Lightweight Python web-framework PSARC 2015/071 PyCA Python Cryptography PSARC 2015/170 OpenStack client for Ironic (Bare Metal Provisioning) PSARC 2015/171 scp - python secure copy PSARC 2015/196 singledispatch - Single-dispatch generic functions for Python PSARC 2015/197 logutils - Set of handlers for standard Python logging library PSARC 2015/198 Support for enumerations in Python 2.6 and 2.7 PSARC 2015/250 paramiko - SSHv2 protocol implementation in Python 20547142 Request to integrate Ironic into userland 17502639 The Python paramiko module should be added to Userland 20172780 The Python module scp should be added to Userland 20180376 The Python module ironicclient should be added to Userland 20182588 The Python module pecan should be added to Userland 20465525 The PyCA cryptography module should be added to Userland 20904396 The Python module singledispatch should be added to Userland 20904413 The Python module logutils should be added to Userland 20917993 The Python enum34 module should be added to Userland

Add wanboot to list of potentially supported boot devices.

--- python-ironicclient-0.3.2/ironicclient/v1/node_shell.py.~1~	2014-12-10 11:10:37.000000000 -0800
+++ python-ironicclient-0.3.2/ironicclient/v1/node_shell.py	2015-01-09 00:10:16.660604875 -0800
@@ -344,8 +344,8 @@ def do_node_set_console_mode(cc, args):
 @cliutils.arg(
     'device',
     metavar='<boot device>',
-    choices=['pxe', 'disk', 'cdrom', 'bios', 'safe'],
-    help="Supported boot devices:  'pxe', 'disk', 'cdrom', 'bios', 'safe'")
+    choices=['pxe', 'disk', 'cdrom', 'bios', 'safe', 'wanboot'],
+    help="Supported boot devices:  'pxe', 'disk', 'cdrom', 'bios', 'safe', 'wanboot'")
 @cliutils.arg(
     '--persistent',
     dest='persistent',