diff options
author | Brad Smith <brad@comstyle.com> | 2022-10-23 01:00:07 -0400 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-10-28 09:39:21 +0200 |
commit | 690d43a8b1fa0d6fce6f68725e823e95115cf532 (patch) | |
tree | 741ef29578b04c08291d351aae60a20c4dbed89f /tests | |
parent | 0e283d845e9040a4a20dfb2c7122c9e95afca46f (diff) | |
download | qemu-690d43a8b1fa0d6fce6f68725e823e95115cf532.zip qemu-690d43a8b1fa0d6fce6f68725e823e95115cf532.tar.gz qemu-690d43a8b1fa0d6fce6f68725e823e95115cf532.tar.bz2 |
tests/vm: update openbsd to release 7.2
tests/vm: update openbsd to release 7.2
Signed-off-by: Brad Smith <brad@comstyle.com>
Message-Id: <Y1TKVwNKvk+euT/s@humpty.home.comstyle.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/vm/openbsd | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/vm/openbsd b/tests/vm/openbsd index 6f1b6f5..eaeb201 100755 --- a/tests/vm/openbsd +++ b/tests/vm/openbsd @@ -22,8 +22,8 @@ class OpenBSDVM(basevm.BaseVM): name = "openbsd" arch = "x86_64" - link = "https://cdn.openbsd.org/pub/OpenBSD/7.1/amd64/install71.iso" - csum = "d3a7c5b9bf890bc404304a1c96f9ee72e1d9bbcf9cc849c1133bdb0d67843396" + link = "https://cdn.openbsd.org/pub/OpenBSD/7.2/amd64/install72.iso" + csum = "0369ef40a3329efcb978c578c7fdc7bda71e502aecec930a74b44160928c91d3" size = "20G" pkgs = [ # tools @@ -56,6 +56,9 @@ class OpenBSDVM(basevm.BaseVM): # libs: migration "zstd", + + # libs: networking + "libslirp", ] BUILD_SCRIPT = """ |