lp://staging/~louis/ubuntu/precise/vm-builder/lp531599
Created by
Louis Bouchard
and last modified
- Get this branch:
- bzr branch lp://staging/~louis/ubuntu/precise/vm-builder/lp531599
Only
Louis Bouchard
can upload to this branch. If you are
Louis Bouchard
please log in for upload directions.
Branch merges
Propose for merging
No branches
dependent on this one.
Ready for review
for merging
into
lp://staging/ubuntu/precise/vm-builder
- Serge Hallyn: Needs Resubmitting
- Scott Moser: Pending requested
-
Diff: 6519 lines (+6029/-0) (has conflicts)91 files modified.bzrignore (+11/-0)
AUTHORS (+29/-0)
MANIFEST.in (+7/-0)
Makefile (+19/-0)
NEWS (+58/-0)
VMBuilder/__init__.py (+135/-0)
VMBuilder/contrib/cli.py (+450/-0)
VMBuilder/disk.py (+549/-0)
VMBuilder/distro.py (+99/-0)
VMBuilder/exception.py (+27/-0)
VMBuilder/frontend.py (+53/-0)
VMBuilder/hypervisor.py (+121/-0)
VMBuilder/log.py (+36/-0)
VMBuilder/plugins/__init__.py (+329/-0)
VMBuilder/plugins/ec2/__init__.py (+150/-0)
VMBuilder/plugins/ec2/templates/ec2_version.tmpl (+1/-0)
VMBuilder/plugins/ec2/templates/landscape_client.tmpl (+1/-0)
VMBuilder/plugins/ec2/templates/sshd_config.tmpl (+77/-0)
VMBuilder/plugins/ec2/templates/sudoers.tmpl (+29/-0)
VMBuilder/plugins/firstscripts/__init__.py (+65/-0)
VMBuilder/plugins/firstscripts/templates/firstbootrc.tmpl (+10/-0)
VMBuilder/plugins/firstscripts/templates/firstloginrc.tmpl (+10/-0)
VMBuilder/plugins/kvm/__init__.py (+19/-0)
VMBuilder/plugins/kvm/vm.py (+71/-0)
VMBuilder/plugins/libvirt/__init__.py (+87/-0)
VMBuilder/plugins/libvirt/templates/libvirtxml.tmpl (+46/-0)
VMBuilder/plugins/libvirt/templates/libvirtxml_fsimage.tmpl (+33/-0)
VMBuilder/plugins/network/__init__.py (+158/-0)
VMBuilder/plugins/postinst/__init__.py (+77/-0)
VMBuilder/plugins/ubuntu/__init__.py (+19/-0)
VMBuilder/plugins/ubuntu/dapper.py (+375/-0)
VMBuilder/plugins/ubuntu/distro.py (+294/-0)
VMBuilder/plugins/ubuntu/edgy.py (+84/-0)
VMBuilder/plugins/ubuntu/feisty.py (+26/-0)
VMBuilder/plugins/ubuntu/gutsy.py (+26/-0)
VMBuilder/plugins/ubuntu/hardy.py (+58/-0)
VMBuilder/plugins/ubuntu/intrepid.py (+45/-0)
VMBuilder/plugins/ubuntu/jaunty.py (+40/-0)
VMBuilder/plugins/ubuntu/karmic.py (+33/-0)
VMBuilder/plugins/ubuntu/lucid.py (+23/-0)
VMBuilder/plugins/ubuntu/maverick.py (+23/-0)
VMBuilder/plugins/ubuntu/natty.py (+22/-0)
VMBuilder/plugins/ubuntu/oneiric.py (+28/-0)
VMBuilder/plugins/ubuntu/precise.py (+23/-0)
VMBuilder/plugins/ubuntu/suite.py (+28/-0)
VMBuilder/plugins/ubuntu/templates/51_update-motd-hardy.tmpl (+10/-0)
VMBuilder/plugins/ubuntu/templates/51_update-motd.tmpl (+10/-0)
VMBuilder/plugins/ubuntu/templates/dapper_fstab.tmpl (+10/-0)
VMBuilder/plugins/ubuntu/templates/dapper_fstab_fsimage.tmpl (+10/-0)
VMBuilder/plugins/ubuntu/templates/devicemap.tmpl (+3/-0)
VMBuilder/plugins/ubuntu/templates/etc_hosts.tmpl (+10/-0)
VMBuilder/plugins/ubuntu/templates/initctl-stub.tmpl (+3/-0)
VMBuilder/plugins/ubuntu/templates/interfaces.tmpl (+22/-0)
VMBuilder/plugins/ubuntu/templates/is-compat-env.tmpl (+3/-0)
VMBuilder/plugins/ubuntu/templates/kernelimg.tmpl (+8/-0)
VMBuilder/plugins/ubuntu/templates/locale.tmpl (+1/-0)
VMBuilder/plugins/ubuntu/templates/nostart-policy-rc.d.tmpl (+18/-0)
VMBuilder/plugins/ubuntu/templates/sources.list.tmpl (+15/-0)
VMBuilder/plugins/ubuntu/templates/sudoers.tmpl (+23/-0)
VMBuilder/plugins/ubuntu/templates/timezone.tmpl (+1/-0)
VMBuilder/plugins/ubuntu/templates/upstart.tmpl (+16/-0)
VMBuilder/plugins/ubuntu/templates/xen-ld-so-conf.tmpl (+1/-0)
VMBuilder/plugins/ubuntu/tests/test_distro.py (+14/-0)
VMBuilder/plugins/virtualbox/__init__.py (+19/-0)
VMBuilder/plugins/virtualbox/templates/vm_deploy_script.tmpl (+65/-0)
VMBuilder/plugins/virtualbox/vm.py (+59/-0)
VMBuilder/plugins/vmware/__init__.py (+19/-0)
VMBuilder/plugins/vmware/templates/esxi.vmx.tmpl (+57/-0)
VMBuilder/plugins/vmware/templates/flat.vmdk.tmpl (+19/-0)
VMBuilder/plugins/vmware/templates/vmware.tmpl (+30/-0)
VMBuilder/plugins/vmware/vm.py (+128/-0)
VMBuilder/plugins/xen/__init__.py (+20/-0)
VMBuilder/plugins/xen/vm.py (+89/-0)
VMBuilder/tests/__init__.py (+17/-0)
VMBuilder/tests/base_test.py (+67/-0)
VMBuilder/tests/disk_tests.py (+289/-0)
VMBuilder/tests/network_tests.py (+95/-0)
VMBuilder/tests/plugin_tests.py (+119/-0)
VMBuilder/tests/ubuntu_tests.py (+39/-0)
VMBuilder/tests/util_tests.py (+10/-0)
VMBuilder/util.py (+224/-0)
VMBuilder/vm.py (+257/-0)
examples/ec2-amd64-part-file.txt (+2/-0)
examples/ec2-firstboot.sh (+20/-0)
examples/ec2-firstlogin.sh (+49/-0)
examples/ec2-i386-part-file.txt (+3/-0)
setup.py (+26/-0)
ubuntu-vm-builder (+24/-0)
ubuntu-vm-builder.1 (+7/-0)
vmbuilder (+24/-0)
vmbuilder.1 (+170/-0)
Related bugs
Related blueprints
Branch information
- Owner:
- Louis Bouchard
- Status:
- Development
Recent revisions
- 470. By Michael Vogt
-
VMBuilder/
plugins/ ubuntu/ oneiric. py: add small sleep to ensure /dev in the chroot is no longer busy after debootstrap finished - 466. By Serge Hallyn
-
A fix suggested by garo for LP: #784888. If len(elements) < 4,
then checking for 'if not elements[3]' actually throws an error.
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp://staging/ubuntu/precise/vm-builder