diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py index e0152dc44..0657f7b85 100644 --- a/src/modules/unpackfs/main.py +++ b/src/modules/unpackfs/main.py @@ -486,6 +486,11 @@ def run(): is_first = False + # Show the entry, weight and accumulated_weight before each entry, + # to allow tweaking the weights. + for e in unpack: + utils.debug(".. {!s} w={!s} aw={!s}".format(e.source, e.weight, e.accumulated_weight)) + repair_root_permissions(root_mount_point) try: unpackop = UnpackOperation(unpack)