Adding option for customized containers

This commit is contained in:
Amit Mahajan
2009-11-20 00:50:57 +05:30
parent e2c2f1f2b1
commit 2b63cff800
11 changed files with 328 additions and 4 deletions

View File

@@ -104,7 +104,7 @@ def build_all_containers():
if container.type == 'linux':
pass
cont_images.append(build_linux_container(config, projpaths, container))
elif container.type == 'baremetal':
elif container.type == 'baremetal' or container.type == 'custom':
cont_images.append(build_default_container(config, projpaths, container))
elif container.type == 'posix':
cont_images.append(build_posix_container(config, projpaths, container))