summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2013-01-09 10:43:50 +0000
committerMark McLoughlin <markmc@redhat.com>2013-01-09 22:09:17 +0000
commit16436adf91235cce75d7b18fc428ee0ae6ff88f7 (patch)
tree8a9f73567653d414262b169aa5695f36a50bc4ed
parent4ff3789b7bf31c3fc025b214fbfc56ec454df47c (diff)
downloadnova-16436adf91235cce75d7b18fc428ee0ae6ff88f7.tar.gz
nova-16436adf91235cce75d7b18fc428ee0ae6ff88f7.tar.xz
nova-16436adf91235cce75d7b18fc428ee0ae6ff88f7.zip
Remove unused baremetal PXE options
These options were introduced by commit a2f260f and appear to never to have been used. Change-Id: Idf1387fd453b7b1c392db764934c148dcbfc5d66
-rw-r--r--nova/virt/baremetal/pxe.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/nova/virt/baremetal/pxe.py b/nova/virt/baremetal/pxe.py
index 9dbb4e79e..f97126e72 100644
--- a/nova/virt/baremetal/pxe.py
+++ b/nova/virt/baremetal/pxe.py
@@ -36,12 +36,6 @@ from nova.virt.disk import api as disk
pxe_opts = [
- cfg.StrOpt('dnsmasq_pid_dir',
- default='$state_path/baremetal/dnsmasq',
- help='path to directory stores pidfiles of dnsmasq'),
- cfg.StrOpt('dnsmasq_lease_dir',
- default='$state_path/baremetal/dnsmasq',
- help='path to directory stores leasefiles of dnsmasq'),
cfg.StrOpt('deploy_kernel',
help='Default kernel image ID used in deployment phase'),
cfg.StrOpt('deploy_ramdisk',
@@ -55,11 +49,6 @@ pxe_opts = [
cfg.StrOpt('pxe_config_template',
default='$pybasedir/nova/virt/baremetal/pxe_config.template',
help='Template file for PXE configuration'),
- cfg.StrOpt('pxe_interface',
- default='eth0'),
- cfg.StrOpt('pxe_path',
- default='/usr/lib/syslinux/pxelinux.0',
- help='path to pxelinux.0'),
]
LOG = logging.getLogger(__name__)