mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
changes MountVolume to MountRoot
this type changed names during a major refactoring for partition support
This commit is contained in:
parent
e91bf7fed4
commit
c1f47a3dc0
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ from common import phases
|
|||
import os
|
||||
from common.tasks.packages import ImagePackages
|
||||
from common.tasks.host import CheckPackages
|
||||
from common.tasks.filesystem import MountVolume
|
||||
from common.tasks.filesystem import MountRoot
|
||||
|
||||
|
||||
class AddUserPackages(Task):
|
||||
|
@ -22,7 +22,7 @@ class AddUserPackages(Task):
|
|||
class AddLocalUserPackages(Task):
|
||||
description = 'Adding user local packages to the image packages'
|
||||
phase = phases.system_modification
|
||||
after = [MountVolume]
|
||||
after = [MountRoot]
|
||||
|
||||
def run(self, info):
|
||||
if 'local' not in info.manifest.plugins['user_packages']:
|
||||
|
|
Loading…
Add table
Reference in a new issue