summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Rollenhagen <jim@jimrollenhagen.com>2018-08-06 12:00:31 -0400
committerJim Rollenhagen <jim@jimrollenhagen.com>2018-08-06 12:00:31 -0400
commit61bb3a7e7910de262ad891e0ffb84b0856ea3ccc (patch)
tree16b48d2610681942edae31b1d26c004e37267a54
parentcf890896962a88414bcb42cfbeb981fbac99a28b (diff)
downloadironic-61bb3a7e7910de262ad891e0ffb84b0856ea3ccc.tar.gz
Simplify subclasses for PXERamdiskDeploy
AgentDeploy already inherits from AgentDeployMixin and DeployInterface, so there's no need to list them here. Change-Id: Ia76e21330b012bdeb69a3d77b1544575d6d62513
-rw-r--r--ironic/drivers/modules/pxe.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ironic/drivers/modules/pxe.py b/ironic/drivers/modules/pxe.py
index 6b5570ec3..baa43ad09 100644
--- a/ironic/drivers/modules/pxe.py
+++ b/ironic/drivers/modules/pxe.py
@@ -728,8 +728,7 @@ class PXEBoot(base.BootInterface):
_parse_driver_info(task.node, mode='rescue')
-class PXERamdiskDeploy(agent.AgentDeploy, agent.AgentDeployMixin,
- base.DeployInterface):
+class PXERamdiskDeploy(agent.AgentDeploy):
def validate(self, task):
if 'ramdisk_boot' not in task.driver.boot.capabilities: