From 7621698a027ed0d57c2837ce3f1c8559d7699092 Mon Sep 17 00:00:00 2001 From: Nuno do Carmo Date: Thu, 26 Jan 2023 17:18:47 +0100 Subject: [PATCH 1/2] Missing `bootstrap` sub-command in examples Both Ubuntu and Debian examples are missing the `bootstrap` sub-command keyword. The examples, when copied as-is, throw an error due to the missing keyword. Signed-off-by: Nuno do Carmo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 064e299..7c8d420 100644 --- a/README.md +++ b/README.md @@ -97,13 +97,13 @@ The first build of a machine type and architecture may be quite heavy on time an The following bootstrap a container called 'bob' using Ubuntu 22.04 *(Jammy Jellyfish)* as the base. ```bash -sudo machinespawn ubuntu-22.04 bob +sudo machinespawn bootstrap ubuntu-22.04 bob ``` Here's an example that would bootstrap a Debian 11 container called 'fred': ```bash -sudo machinespawn debian-11 fred +sudo machinespawn bootstrap debian-11 fred ``` ### `list` From 03e5c4cb75878c7603d353ef514d1ce48faa10f6 Mon Sep 17 00:00:00 2001 From: Nuno do Carmo Date: Thu, 26 Jan 2023 17:25:26 +0100 Subject: [PATCH 2/2] Corrected machinespawn typo in `pull-tar` example Signed-off-by: Nuno do Carmo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c8d420..ed2cb9a 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ machinespawn pull-tar Downloads a .tar container image from the specified URL, and makes it available under the specified local machine name. The URL must be of type "http://" or "https://", and must refer to a .tar, .tar.gz, .tar.xz or .tar.bz2 archive file ```bash -sudo macheinespawn pull-tar https://download.fedoraproject.org/pub/fedora/linux/releases/36/Cloud/x86_64/images/Fedora-Cloud-Base-36-1.5.x86_64.raw.xz FedoraCloudBase36 +sudo machinespawn pull-tar https://download.fedoraproject.org/pub/fedora/linux/releases/36/Cloud/x86_64/images/Fedora-Cloud-Base-36-1.5.x86_64.raw.xz FedoraCloudBase36 ``` ### `remove`