diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-03-10 15:44:57 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-03-10 15:44:57 +0000 |
| commit | acbc0f597f6183fc856f82b07392ddd4a61393f7 (patch) | |
| tree | 94022860d6cc490ae0294e93cac94ec7525c8a84 /nova | |
| parent | 910b74153372665d0bed0df66bb74c20cc95edf9 (diff) | |
| parent | b38af111532717cbe9f4bef1d3c3d58e7082c8b9 (diff) | |
| download | nova-acbc0f597f6183fc856f82b07392ddd4a61393f7.tar.gz nova-acbc0f597f6183fc856f82b07392ddd4a61393f7.tar.xz nova-acbc0f597f6183fc856f82b07392ddd4a61393f7.zip | |
Another little bit of fallout from the execvp branch.
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) |
