From e8726c37ddd27922e3adf6a43a509310fc1d1691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miriam=20Espa=C3=B1a=20Acebal?= Date: Fri, 5 Jul 2024 12:00:09 +0200 Subject: [PATCH] Change remote when creating container with autopktest-build-lxd `images:` remote doesn't provide Ubuntu Server images anymore --- MergeProposal.md | 2 +- PackageBuilding.md | 2 +- PackageFixing.md | 2 +- PackageMerging.md | 4 ++-- PackageTests.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MergeProposal.md b/MergeProposal.md index a7a8a43..e2d659b 100644 --- a/MergeProposal.md +++ b/MergeProposal.md @@ -31,7 +31,7 @@ PPA: ppa:kstenerud/postfix-fix-lp1753470-postconf-segfault Steps to test: -# lxc launch images:ubuntu/bionic builder +# lxc launch ubuntu-daily:ubuntu/bionic builder # lxc exec builder bash # apt dist-upgrade diff --git a/PackageBuilding.md b/PackageBuilding.md index adce807..5d41239 100644 --- a/PackageBuilding.md +++ b/PackageBuilding.md @@ -31,7 +31,7 @@ following example with the container image you wish to use. From within the package repository: ```bash -$ lxc launch images:ubuntu/focal builder \ +$ lxc launch ubuntu-daily:ubuntu/focal builder \ && sleep 5 \ && lxc exec builder -- mkdir -p /root/build/package \ && tar cf - . | lxc exec builder -- tar xf - -C /root/build/package \ diff --git a/PackageFixing.md b/PackageFixing.md index 1cef6a6..f715e7e 100644 --- a/PackageFixing.md +++ b/PackageFixing.md @@ -104,7 +104,7 @@ have their own preferences. Here's a couple of options: To make a container for testing: ```bash -$ lxc launch images:ubuntu/bionic tester +$ lxc launch ubuntu-daily:ubuntu/bionic tester $ lxc exec tester -- bash ``` diff --git a/PackageMerging.md b/PackageMerging.md index 2577ccc..f80401d 100644 --- a/PackageMerging.md +++ b/PackageMerging.md @@ -941,7 +941,7 @@ Test the following: Example: ```bash -$ lxc launch images:ubuntu/cosmic tester && lxc exec tester bash +$ lxc launch ubuntu-daily:ubuntu/cosmic tester && lxc exec tester bash $ apt update && apt dist-upgrade -y && apt install -y at ``` @@ -978,7 +978,7 @@ $ echo "echo abc >test.txt" | at now + 1 minute && sleep 1m && cat test.txt && r ### Test installing the latest from scratch ```bash -$ lxc launch images:ubuntu/cosmic tester && lxc exec tester bash +$ lxc launch ubuntu-daily:ubuntu/cosmic tester && lxc exec tester bash $ add-apt-repository -y ppa:kstenerud/at-merge-lp1802914 $ apt update && apt dist-upgrade -y && apt install at $ echo "echo abc >test.txt" | at now + 1 minute && sleep 1m && cat test.txt && rm test.txt diff --git a/PackageTests.md b/PackageTests.md index a57a3f0..784644c 100644 --- a/PackageTests.md +++ b/PackageTests.md @@ -112,7 +112,7 @@ First, we will build the image we prepared in the previous section. * To build a container image: ```bash - $ autopkgtest-build-lxd images:ubuntu/impish/amd64 + $ autopkgtest-build-lxd ubuntu-daily:oracular ``` You should see an autopkgtest image now when you run `lxc image list`.