From 4eb90a544e7f488b1d6c0679c227d7ed2ccfe323 Mon Sep 17 00:00:00 2001 From: Michael Gerlach Date: Sat, 4 Feb 2017 16:15:24 +0100 Subject: [PATCH] type is never going to be a partition --- bootstrapvz/common/tasks/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/common/tasks/filesystem.py b/bootstrapvz/common/tasks/filesystem.py index 4230a5a..4fb7393 100644 --- a/bootstrapvz/common/tasks/filesystem.py +++ b/bootstrapvz/common/tasks/filesystem.py @@ -196,7 +196,7 @@ class FStab(Task): def is_additional(partition): return (not isinstance(partition, UnformattedPartition) and - partition.name not in ["boot", "swap", "root", "type"]) + partition.name not in ["boot", "swap", "root"]) p_map = info.volume.partition_map partitions = p_map.partitions