From b9e0714056cc4e7bb671e92396f756d5d487ed93 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 10 Aug 2013 19:27:18 +0200 Subject: [PATCH] Specify filesystem when mounting --- common/tasks/filesystem.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/tasks/filesystem.py b/common/tasks/filesystem.py index cbae6c1..5254772 100644 --- a/common/tasks/filesystem.py +++ b/common/tasks/filesystem.py @@ -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):