mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Specify filesystem when mounting
This commit is contained in:
parent
0785e21ab0
commit
b9e0714056
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ class MountVolume(Task):
|
|||
msg = 'Something is already mounted at {root}'.format(root=info.root)
|
||||
raise TaskError(msg)
|
||||
|
||||
log_check_call(['/bin/mount', info.bootstrap_device['path'], info.root])
|
||||
log_check_call(['/bin/mount',
|
||||
'-t', info.manifest.volume['filesystem'],
|
||||
info.bootstrap_device['path'],
|
||||
info.root])
|
||||
|
||||
|
||||
class MountSpecials(Task):
|
||||
|
|
Loading…
Add table
Reference in a new issue