mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00

Also, convert with context handlers in classes to functions with generators This makes the code a lot more readable
6 lines
196 B
Python
6 lines
196 B
Python
|
|
|
|
def initialize_image(manifest, build_server, bootstrap_info):
|
|
if manifest.provider['name'] == 'virtualbox':
|
|
import vbox
|
|
return vbox.initialize_image(manifest, build_server, bootstrap_info)
|