On Fri, Jan 15, 2021 at 04:22:30PM +0800, Cao Xueliang wrote:
package => packages
ok
On Fri, Jan 15, 2021 at 03:52:05PM +0800, Liu Yinsi wrote:
[why]
- providers/qemu/kvm.sh needs wget, curl, qemu command, so add it.
- current debian 'qemu' package makes no sense anymore, and it is very unlikely one will need all of them together,
so delete it, install qemu-system-ARCH packages, can see:https://packages.debian.org/sid/qemu
2 => use qemu-system-ARCH packages to replace qemue in debian, refer: https://packages.debian.org/sid/qemu.
ok Thanks, Yinsi
Thanks, Xueliang
Signed-off-by: Liu Yinsi liuyinsi@163.com
sparrow/0-package/os/centos | 2 ++ sparrow/0-package/os/debian | 6 +++++- sparrow/0-package/os/openEuler | 1 + 3 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/sparrow/0-package/os/centos b/sparrow/0-package/os/centos index 8df36c0..b25dade 100755 --- a/sparrow/0-package/os/centos +++ b/sparrow/0-package/os/centos @@ -22,6 +22,8 @@ pkgs=( busybox iproute hostname
- wget
- curl
)
yum install -y --skip-broken "${pkgs[@]}" diff --git a/sparrow/0-package/os/debian b/sparrow/0-package/os/debian index c45e8c2..4d13413 100755 --- a/sparrow/0-package/os/debian +++ b/sparrow/0-package/os/debian @@ -13,13 +13,17 @@ pkgs=( docker.io ruby-full ruby-dev
- qemu dmidecode lockfile-progs bridge-utils busybox iproute2 hostname
- wget
- curl
- qemu-system-aarch64
- qemu-system-x86
- qemu-system-riscv64
)
apt-get update diff --git a/sparrow/0-package/os/openEuler b/sparrow/0-package/os/openEuler index 37c74d0..04996f5 100755 --- a/sparrow/0-package/os/openEuler +++ b/sparrow/0-package/os/openEuler @@ -22,6 +22,7 @@ pkgs=( iproute hostname libvirt
- curl
)
yum install -y --skip-broken "${pkgs[@]}"
2.23.0