mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
reduce visibility of some submodules
This commit is contained in:
parent
2a3b450e3f
commit
a68511c1d5
2 changed files with 3 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
||||||
__all__ = ['BootstrapInformation', 'Manifest', 'Task', 'TaskList', 'main']
|
__all__ = ['Manifest', 'Task', 'TaskList', 'main']
|
||||||
from bootstrapinfo import BootstrapInformation
|
|
||||||
from manifest import Manifest
|
from manifest import Manifest
|
||||||
from task import Task
|
from task import Task
|
||||||
from tasklist import TaskList
|
from tasklist import TaskList
|
||||||
|
|
|
@ -18,13 +18,13 @@ def run(args):
|
||||||
data = load_manifest(args.manifest)
|
data = load_manifest(args.manifest)
|
||||||
provider = get_provider(data)
|
provider = get_provider(data)
|
||||||
manifest = provider.Manifest(args.manifest, data)
|
manifest = provider.Manifest(args.manifest, data)
|
||||||
|
|
||||||
manifest.validate()
|
manifest.validate()
|
||||||
manifest.load_plugins()
|
manifest.load_plugins()
|
||||||
|
|
||||||
tasklist = provider.tasklist(manifest)
|
tasklist = provider.tasklist(manifest)
|
||||||
tasklist.plugins(manifest)
|
tasklist.plugins(manifest)
|
||||||
|
|
||||||
from common import BootstrapInformation
|
from bootstrapinfo import BootstrapInformation
|
||||||
bootstrap_info = BootstrapInformation(manifest=manifest, debug=args.debug)
|
bootstrap_info = BootstrapInformation(manifest=manifest, debug=args.debug)
|
||||||
tasklist.run(bootstrap_info)
|
tasklist.run(bootstrap_info)
|
||||||
|
|
Loading…
Add table
Reference in a new issue