From 16436adf91235cce75d7b18fc428ee0ae6ff88f7 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Wed, 9 Jan 2013 10:43:50 +0000 Subject: [PATCH] Remove unused baremetal PXE options These options were introduced by commit a2f260f and appear to never to have been used. Change-Id: Idf1387fd453b7b1c392db764934c148dcbfc5d66 --- nova/virt/baremetal/pxe.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/nova/virt/baremetal/pxe.py b/nova/virt/baremetal/pxe.py index 9dbb4e79e052..f97126e72db4 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__)