diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-03-10 16:25:18 +0100 |
|---|---|---|
| committer | Soren Hansen <soren@linux2go.dk> | 2011-03-10 16:25:18 +0100 |
| commit | b38af111532717cbe9f4bef1d3c3d58e7082c8b9 (patch) | |
| tree | 7955047aba40884a61da7aed0635982e460b7840 /nova | |
| parent | b64cf7352a24d8ced69aa408f7ceadd9da71da14 (diff) | |
| download | nova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.tar.gz nova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.tar.xz nova-b38af111532717cbe9f4bef1d3c3d58e7082c8b9.zip | |
Another little detail..
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/virt/disk.py | 2 |
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) |
