cloud-init:ubuntu/eoan

Last commit made on 2020-06-03
Get this branch:
git clone -b ubuntu/eoan https://git.launchpad.net/cloud-init
Members of cloud-init Commiters can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
ubuntu/eoan
Repository:
lp:cloud-init

Recent commits

d748054... by Chad Smith

changelog: update 20.2-45-g5f7825e2-0ubuntu1~19.10.1 for release

96b2ef3... by Chad Smith

d/control: drop python3-pep8, python3-pyflakes and python3-six from build-deps

a9930d7... by Chad Smith

d/cloud-init.templates: add RbxCloud datasource support

3f6421c... by Chad Smith

d/patches: network renderer default remains eni before netplan

d3b7c07... by Chad Smith

d/patches: ec2 do not apply full network config from IMDS by default

0f184b5... by Chad Smith

update changelog (New upstream snapshot 20.2-45-g5f7825e2).

da6ce24... by Chad Smith

merge from 5f7825e at 20.2-45-g5f7825e2

5f7825e... by Joshua Powers

test: fix all flake8 E241 (#403)

Remove extra spaces after a ','

d2b0571... by Joshua Powers

test: ignore flake8 E402 errors in main.py (#402)

This puts an ignore on the imports not at the top of the file errors.
The reason for the ignore instead of fix is that the file is using imp
to grab a lock and patch logging before further imports are completed.

fc07d63... by Matthew Ruffell <email address hidden>

cc_grub_dpkg: determine idevs in more robust manner with grub-probe (#358)

Replace the hardcoded list of devices with a more robust way of determining
the device which grub is installed to.

We use grub-probe to fetch the underlying disk the /boot directory is
located on, and attempt to match the disk with its /dev/disk/by-id value.
If no such /dev/disk/by-id/ value exists, we fallback to the plain disk
name.

The changes are robust to unstable kernel device names and ordering, and use
/dev/disk/by-id values to populate grub-pc/install_devices where possible.

LP: #1877491