From a3006fbe472fd97303e9dc0228a35856c58ac018 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 6 Oct 2013 13:25:00 +0200 Subject: [PATCH] Fix humongous brainfart --- common/tasks/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tasks/filesystem.py b/common/tasks/filesystem.py index 39616bb..76e7604 100644 --- a/common/tasks/filesystem.py +++ b/common/tasks/filesystem.py @@ -133,7 +133,7 @@ class FStab(Task): # if info.manifest.virtualization == 'pvm': # device = '/dev/xvda' p_map = info.volume.partition_map - mount_points = [('/root', p_map.root)] + mount_points = [('/', p_map.root)] if hasattr(p_map, 'boot'): mount_points.append(('/boot', p_map.boot)) if hasattr(p_map, 'swap'):