mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
fix tasklist for filesystem.CopyMountTable and filesystem.RemoveMountTable
This commit is contained in:
parent
9eb2686fd5
commit
7c2aeee70c
1 changed files with 6 additions and 5 deletions
|
@ -40,11 +40,12 @@ def resolve_tasks(taskset, manifest):
|
|||
taskset.update([boot.SetGrubConsolOutputDeviceToVirtual,
|
||||
boot.SetSystemdTTYVTDisallocate,
|
||||
])
|
||||
if manifest.release >= bookworm:
|
||||
if filesystem.CopyMountTable in taskset:
|
||||
taskset.remove(filesystem.CopyMountTable)
|
||||
if filesystem.RemoveMountTable in taskset:
|
||||
taskset.remove(filesystem.RemoveMountTable)
|
||||
|
||||
if manifest.release >= bookworm:
|
||||
if filesystem.CopyMountTable in taskset:
|
||||
taskset.remove(filesystem.CopyMountTable)
|
||||
if filesystem.RemoveMountTable in taskset:
|
||||
taskset.remove(filesystem.RemoveMountTable)
|
||||
|
||||
|
||||
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
|
||||
|
|
Loading…
Add table
Reference in a new issue