Skip to content

Commit

Permalink
Adds ext4 and reiserfs to _mount_filesystem().
Browse files Browse the repository at this point in the history
Fixes bug 870495.

Change-Id: I6071b833040b8a1118f0764c44202ba3964e17a8
  • Loading branch information
jk0 committed Oct 20, 2011
1 parent 75a3fbb commit 71f2b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/virt/xenapi/vm_utils.py
Expand Up @@ -1383,7 +1383,7 @@ def _mount_filesystem(dev_path, dir):
"""mounts the device specified by dev_path in dir"""
try:
out, err = utils.execute('mount',
'-t', 'ext2,ext3',
'-t', 'ext2,ext3,ext4,reiserfs',
dev_path, dir, run_as_root=True)
except exception.ProcessExecutionError as e:
err = str(e)
Expand Down

0 comments on commit 71f2b0d

Please sign in to comment.