~oddbloke/curtin/+git/curtin:ubuntu/devel
Last commit made on
2019-08-21
- Get this branch:
-
git clone
-b ubuntu/devel
https://git.launchpad.net/~oddbloke/curtin/+git/curtin
Only
Dan Watkins
can upload to this branch. If you are
Dan Watkins
please log in for upload directions.
Branch merges
Propose for merging
- Ryan Harper (community): Approve
- Server Team CI bot: Needs Fixing (continuous-integration)
-
Diff: 114 lines (+20/-27)4 files modifiedMakefile (+5/-1)
debian/changelog (+10/-0)
debian/control (+0/-23)
debian/rules (+5/-3)
- Server Team CI bot: Needs Fixing (continuous-integration)
- Ryan Harper (community): Approve
-
Diff: 940 lines (+116/-213)43 files modifiedcurtin/block/deps.py (+1/-1)
curtin/deps/__init__.py (+1/-1)
curtin/util.py (+11/-3)
debian/changelog (+13/-0)
debian/control (+1/-1)
tests/unittests/test_curthooks.py (+3/-3)
tests/unittests/test_util.py (+79/-0)
tests/vmtests/__init__.py (+3/-3)
tests/vmtests/test_apt_config_cmd.py (+0/-4)
tests/vmtests/test_basic.py (+0/-8)
tests/vmtests/test_basic_dasd.py (+0/-7)
tests/vmtests/test_bcache_basic.py (+0/-4)
tests/vmtests/test_bcache_bug1718699.py (+0/-4)
tests/vmtests/test_bcache_ceph.py (+0/-4)
tests/vmtests/test_bcache_partitions.py (+0/-4)
tests/vmtests/test_fs_battery.py (+0/-4)
tests/vmtests/test_iscsi.py (+0/-4)
tests/vmtests/test_journald_reporter.py (+0/-4)
tests/vmtests/test_lvm.py (+0/-4)
tests/vmtests/test_lvm_iscsi.py (+0/-4)
tests/vmtests/test_lvm_raid.py (+0/-4)
tests/vmtests/test_mdadm_bcache.py (+0/-34)
tests/vmtests/test_mdadm_iscsi.py (+0/-4)
tests/vmtests/test_multipath.py (+0/-4)
tests/vmtests/test_network.py (+0/-4)
tests/vmtests/test_network_alias.py (+0/-4)
tests/vmtests/test_network_bonding.py (+0/-4)
tests/vmtests/test_network_bridging.py (+0/-4)
tests/vmtests/test_network_ipv6.py (+0/-4)
tests/vmtests/test_network_ipv6_static.py (+0/-4)
tests/vmtests/test_network_ipv6_vlan.py (+0/-4)
tests/vmtests/test_network_mtu.py (+0/-4)
tests/vmtests/test_network_static.py (+0/-4)
tests/vmtests/test_network_static_routes.py (+0/-5)
tests/vmtests/test_network_vlan.py (+0/-4)
tests/vmtests/test_nvme.py (+0/-8)
tests/vmtests/test_pollinate_useragent.py (+0/-4)
tests/vmtests/test_preserve.py (+0/-4)
tests/vmtests/test_preserve_raid.py (+0/-4)
tests/vmtests/test_raid5_bcache.py (+0/-4)
tests/vmtests/test_simple.py (+0/-14)
tests/vmtests/test_uefi_basic.py (+0/-9)
tests/vmtests/test_zfsroot.py (+4/-8)
- Server Team CI bot: Approve (continuous-integration)
- curtin developers: Pending requested
-
Diff: 2413 lines (+739/-486)62 files modifiedcurtin/__init__.py (+1/-1)
curtin/block/__init__.py (+35/-2)
curtin/block/clear_holders.py (+21/-2)
curtin/block/multipath.py (+111/-0)
curtin/commands/curthooks.py (+14/-0)
curtin/config.py (+1/-1)
debian/changelog (+19/-0)
doc/topics/config.rst (+50/-0)
examples/tests/basic_scsi.yaml (+1/-1)
examples/tests/no-grub-file.yaml (+9/-0)
helpers/common (+13/-12)
pylintrc (+10/-0)
tests/unittests/helpers.py (+5/-0)
tests/unittests/test_apt_custom_sources_list.py (+4/-3)
tests/unittests/test_block.py (+33/-3)
tests/unittests/test_block_mdadm.py (+3/-7)
tests/unittests/test_block_multipath.py (+149/-0)
tests/vmtests/__init__.py (+5/-4)
tests/vmtests/releases.py (+7/-0)
tests/vmtests/test_apt_config_cmd.py (+6/-2)
tests/vmtests/test_apt_source.py (+2/-2)
tests/vmtests/test_basic.py (+12/-13)
tests/vmtests/test_basic_dasd.py (+6/-0)
tests/vmtests/test_bcache_basic.py (+4/-8)
tests/vmtests/test_bcache_bug1718699.py (+4/-0)
tests/vmtests/test_bcache_ceph.py (+4/-8)
tests/vmtests/test_bcache_partitions.py (+4/-0)
tests/vmtests/test_fs_battery.py (+4/-10)
tests/vmtests/test_install_umount.py (+1/-1)
tests/vmtests/test_iscsi.py (+4/-4)
tests/vmtests/test_journald_reporter.py (+4/-0)
tests/vmtests/test_lvm.py (+4/-8)
tests/vmtests/test_lvm_iscsi.py (+4/-4)
tests/vmtests/test_lvm_raid.py (+4/-0)
tests/vmtests/test_lvm_root.py (+1/-17)
tests/vmtests/test_mdadm_bcache.py (+34/-68)
tests/vmtests/test_mdadm_iscsi.py (+4/-4)
tests/vmtests/test_multipath.py (+6/-9)
tests/vmtests/test_network.py (+4/-23)
tests/vmtests/test_network_alias.py (+4/-23)
tests/vmtests/test_network_bonding.py (+4/-20)
tests/vmtests/test_network_bridging.py (+4/-0)
tests/vmtests/test_network_enisource.py (+0/-9)
tests/vmtests/test_network_ipv6.py (+4/-19)
tests/vmtests/test_network_ipv6_enisource.py (+0/-9)
tests/vmtests/test_network_ipv6_static.py (+4/-27)
tests/vmtests/test_network_ipv6_vlan.py (+4/-9)
tests/vmtests/test_network_mtu.py (+8/-32)
tests/vmtests/test_network_static.py (+4/-27)
tests/vmtests/test_network_static_routes.py (+5/-26)
tests/vmtests/test_network_vlan.py (+4/-8)
tests/vmtests/test_nvme.py (+9/-9)
tests/vmtests/test_old_apt_features.py (+3/-2)
tests/vmtests/test_pollinate_useragent.py (+4/-4)
tests/vmtests/test_raid5_bcache.py (+4/-21)
tests/vmtests/test_simple.py (+40/-4)
tests/vmtests/test_uefi_basic.py (+7/-16)
tests/vmtests/test_vmtests.py (+1/-1)
tests/vmtests/test_zfsroot.py (+8/-0)
tools/vmtest-system-setup (+1/-0)
tools/xkvm (+9/-2)
tox.ini (+1/-1)
Branch information
- Name:
- ubuntu/devel
- Repository:
- lp:~oddbloke/curtin/+git/curtin