summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoren Hansen <soren@linux2go.dk>2011-03-10 16:25:18 +0100
committerSoren Hansen <soren@linux2go.dk>2011-03-10 16:25:18 +0100
commitb38af111532717cbe9f4bef1d3c3d58e7082c8b9 (patch)
tree7955047aba40884a61da7aed0635982e460b7840
parentb64cf7352a24d8ced69aa408f7ceadd9da71da14 (diff)
downloadnova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.tar.gz
nova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.tar.xz
nova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.zip
Another little detail..
-rw-r--r--nova/virt/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/disk.py b/nova/virt/disk.py
index a54cda003..5d499c42c 100644
--- a/nova/virt/disk.py
+++ b/nova/virt/disk.py
@@ -51,7 +51,7 @@ def extend(image, size):
return
utils.execute('truncate', '-s', size, image)
# NOTE(vish): attempts to resize filesystem
- utils.execute('e2fsck', '-fp', mage, check_exit_code=False)
+ utils.execute('e2fsck', '-fp', image, check_exit_code=False)
utils.execute('resize2fs', image, check_exit_code=False)