From 78ec7d5336eb65ff845da7ea9f93d34b402f5a0f Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Fri, 10 Oct 2014 09:56:30 +0100 Subject: [PATCH] Add the PXE VendorPassthru interface to PXEDracDriver Without the PXE VendorPassthru interface to expose the "pass_deploy_info" method in the vendor_passthru endpoint of the API the DRAC it can't continue the deployment after the ramdisk is booted. Closes-Bug: #1379705 Change-Id: I21042cbb95a486742abfcb430471d01cd73b3a4a --- ironic/drivers/drac.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ironic/drivers/drac.py b/ironic/drivers/drac.py index 05df2b81d4..796d783090 100644 --- a/ironic/drivers/drac.py +++ b/ironic/drivers/drac.py @@ -36,3 +36,4 @@ class PXEDracDriver(base.BaseDriver): self.power = power.DracPower() self.deploy = pxe.PXEDeploy() self.management = management.DracManagement() + self.vendor = pxe.VendorPassthru()