~snappy-dev/snapd/+git/snapd-pawel:backend-setup-many

Last commit made on 2019-10-16
Get this branch:
git clone -b backend-setup-many https://git.launchpad.net/~snappy-dev/snapd/+git/snapd-pawel

Branch merges

Branch information

Name:
backend-setup-many
Repository:
lp:~snappy-dev/snapd/+git/snapd-pawel

Recent commits

94376e1... by Paweł Stołowski

Merge branch 'master' into backend-setup-many

1317132... by Michael Vogt

Merge pull request #7607 from sergiocazzolato/tests-fix-lxd-tests

tests: launch the lxd images folowing the pattern ubuntu:${VERSION_ID}

a2f702b... by Sergio Cazzolato

Launch the lxd images folowing the pattern ubuntu:${VERSION_ID}

The images installed like images:ubuntu/18.04 are presenting dependency
problemes. Use the same pattern for all the tests to define the image to
use ubuntu:${VERSION_ID} getting VERSION_ID from /etc/os-release

b4a5404... by Maciej Borzecki

Merge pull request #7600 from zyga/tweak/sandbox-cgroup-freezer

sandbox/cgroup: move freeze/thaw code

e314d63... by Paweł Stołowski

Update lp-1805838 regression test concerning system-key for slightly different error messages in the log.

505fd2f... by Paweł Stołowski

Merge branch 'master' into backend-setup-many

deec975... by Zygmunt Krynicki

sandbox/cgroup: move freeze/thaw code

The introduction of sandbox/cgroup package has allowed some unification
and cleanup of the cgroup code. The remaining element was the freezer
operation used by snap-update-ns.

This patch moves the freezer code to the sandbox/cgroup package.
Existing freeze/thaw functions became public, as did the mocking helper
to control freezing. Minimal documentation for the affected functions
was added as well.

Signed-off-by: Zygmunt Krynicki <email address hidden>

5c5304f... by Michael Vogt

Merge pull request #7536 from cmatsuoka/core20-gadget-seed-role

gadget: accept system-seed role and ubuntu-data label

c781bae... by Michael Vogt

Merge pull request #7598 from anonymouse64/bugfix/shellcheck-grep-regex

test/lib/names.sh: make backslash escaping explicit

e24b664... by Ian Johnson

test/lib/names.sh: make backslash escaping explicit

Shellcheck is complaining about this.

```
In tests/lib/names.sh line 7:
core_name="$(snap model --verbose | grep -Po "^base:\s+\K.*" || true)"
                                                    ^-- SC1117: Backslash is literal in "\s". Prefer explicit escaping: "\\s".
                                                       ^-- SC1117: Backslash is literal in "\K". Prefer explicit escaping: "\\K".
```

Signed-off-by: Ian Johnson <email address hidden>