changes MountVolume to MountRoot

this type changed names during a major refactoring for partition support
This commit is contained in:
Sonny Garcia 2013-11-07 17:19:26 -06:00
parent e91bf7fed4
commit c1f47a3dc0

View file

@ -3,7 +3,7 @@ from common import phases
import os import os
from common.tasks.packages import ImagePackages from common.tasks.packages import ImagePackages
from common.tasks.host import CheckPackages from common.tasks.host import CheckPackages
from common.tasks.filesystem import MountVolume from common.tasks.filesystem import MountRoot
class AddUserPackages(Task): class AddUserPackages(Task):
@ -22,7 +22,7 @@ class AddUserPackages(Task):
class AddLocalUserPackages(Task): class AddLocalUserPackages(Task):
description = 'Adding user local packages to the image packages' description = 'Adding user local packages to the image packages'
phase = phases.system_modification phase = phases.system_modification
after = [MountVolume] after = [MountRoot]
def run(self, info): def run(self, info):
if 'local' not in info.manifest.plugins['user_packages']: if 'local' not in info.manifest.plugins['user_packages']: