~raharper/curtin:fix/curtainer-dont-wait-for-snap

Last commit made on 2020-08-18
Get this branch:
git clone -b fix/curtainer-dont-wait-for-snap https://git.launchpad.net/~raharper/curtin
Only Ryan Harper can upload to this branch. If you are Ryan Harper please log in for upload directions.

Branch merges

Branch information

Name:
fix/curtainer-dont-wait-for-snap
Repository:
lp:~raharper/curtin

Recent commits

ffe6408... by Ryan Harper

mask snapd.seeded.service before container starts

4cd1ea8... by Ryan Harper

tools/curtainer: do not wait for snapd.seeded.service

The curtainer tool is used in CI and other places to extract a certain
curtin source from the archive and then is used to pack/unpack the
curtin code in the correct environment. We have no need or use of
snapd in this container which currently blocks for longer than
curtainer waits for the system to boot due to waiting for snaps to
download and install.

65ca414... by Paride Legovini

vmtests: add Groovy

c8c6418... by Paride Legovini

Drop the Eoan vmtests (EOL)

2a5d8c1... by Dan Watkins

tools: rename remove-vmtest-release to vmtest-remove-release

This prefix matches other vmtest scripts we have in tools/, making it
easier to discover.

(Also make it executable.)

e2e211b... by Paride Legovini

Snooze the tests failing because of LP: #1861941 for two more months

003f860... by Paride Legovini

LP: #1671951 is Fix Released => Drop the PPA

f1bf44f... by Ryan Harper

swaps: handle swapfiles on btrfs

Special care and handling are needed for creating swap files on top
of btrfs filesystems. Curtin will attempt to disable btrfs CoW
on the target file before attempting to fallocate/dd the file.

- Btrfs swapfile requires target kernel 5.0+, older kernels cannot use.
  https://btrfs.wiki.kernel.org/index.php/FAQ
- Query target fstype to check if we can proceed with swap file
  btrfs requires newer kernel, xfs cannot use fallocate
- Update distro.parse_dpkg_version to handle additional formatting
  including linux-image-generic, and versions with Epoch present.
- Adjust TestBasic,TestScsiBasic to add a swapfile to the /btrfs target
- Add the swap partition/file to TestBasic's fstab unittest
- Fix test_swaps_used to use fstab data instead of storage config
  since file-based swaps are created via curtin 'swap' config not
  storage-config.
- Add swap config key 'force', default is false
- Add curtin feature flag, BTRFS_SWAPFILE

LP: #1884161

14ce7d4... by Paride Legovini

curtainer: fail is masking of zfs-mount or zfs-share fails

4870397... by Ryan Harper

multipath: handle multipath nvme name fields correctly

NVME Multipath devices do not have typical mpath names, instead they
include colons and whitespace. Handle this by adjusting the multipath
maps command output to single quote the name field like we do for the
other fields.

LP: #1878041