summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2012-11-21 22:44:32 +0000
committerMark McLoughlin <markmc@redhat.com>2012-11-28 15:04:34 +0000
commit33d7f56cc424071a90f78ebd21913ce2bc9e6c0d (patch)
treee4ee6932390974b7ce735bf7323b573861241714 /nova/compute
parentb424512f9f5a7b74103b68c21a48f2ad6b9aa79e (diff)
Move imagecache code from nova.virt.libvirt.utils
The imagecache related code in libvirt.utils uses the base_dir_name config option. If we move the imagecache utils into imagecache, then we can move the base_dir_name option into that module since there are no other users of it. Having all the imagecache code in the imagecache module seems like a sensible thing to do anyway. blueprint: scope-config-opts Change-Id: I1e154aa4de1628d40964207bdcbe5b3b55076442
Diffstat (limited to 'nova/compute')
-rw-r--r--nova/compute/manager.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index a0835d107..6fcdb222a 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -28,7 +28,6 @@ terminating it.
**Related Flags**
:instances_path: Where instances are kept on disk
-:base_dir_name: Where cached images are stored under instances_path
"""
@@ -78,11 +77,6 @@ from nova import volume
compute_opts = [
- cfg.StrOpt('base_dir_name',
- default='_base',
- help="Where cached images are stored under $instances_path."
- "This is NOT the full path - just a folder name."
- "For per-compute-host cached images, set to _base_$my_ip"),
cfg.StrOpt('console_host',
default=socket.getfqdn(),
help='Console proxy host to use to connect '