mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +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)
|
msg = 'Something is already mounted at {root}'.format(root=info.root)
|
||||||
raise TaskError(msg)
|
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):
|
class MountSpecials(Task):
|
||||||
|
|
Loading…
Add table
Reference in a new issue