From 5d151b0ff0a5d50d9d52d282968f026c60380df7 Mon Sep 17 00:00:00 2001 From: Emile 'iMil' Heitor Date: Mon, 19 Dec 2022 08:52:32 +0100 Subject: [PATCH 1/2] fix: s/qemu-utils/qemu-tools/g --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47c1925..af8e47d 100644 --- a/README.md +++ b/README.md @@ -254,9 +254,9 @@ See the man page for a full description of all available commands. You can use cloud images to create virtual machines. The `vm img` command will download the image to datastore and uncompress it if needed (.xz, .tar.gz, and .gz files are supported). The image should be in RAW or QCOW2 format. -To use this feature you'll need install qemu-utils package: +To use this feature you'll need install qemu-tools package: - # pkg install qemu-utils + # pkg install qemu-tools To launch FreeBSD using official cloud image: From 56da39dc9e74d73a3d2de4d4fff598cade811c17 Mon Sep 17 00:00:00 2001 From: Emile 'iMil' Heitor Date: Tue, 27 Dec 2022 10:13:02 +0100 Subject: [PATCH 2/2] fix: s/qemu-utils/qemu-tools/g --- lib/vm-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vm-core b/lib/vm-core index 5f5b845..45fb6c2 100644 --- a/lib/vm-core +++ b/lib/vm-core @@ -984,7 +984,7 @@ core::decompress(){ core::img(){ local _url _ds="default" _filename if ! which qemu-img > /dev/null; then - util::err "Error: qemu-img is required to work with cloud images! Run 'pkg install qemu-utils'." + util::err "Error: qemu-img is required to work with cloud images! Run 'pkg install qemu-tools'." fi while getopts d:u _opt ; do