From 08c556d85af6c02bdff086392ecb75ad31beeea2 Mon Sep 17 00:00:00 2001 From: Jukka Jokiniva Date: Wed, 17 Jun 2026 16:32:10 +0300 Subject: [PATCH] Install qemu-guest-agent on Ubuntu-24.04-aarch64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pick-to: 6.8 Task-number: QTQAINFRA-7938 Change-Id: I963cc027207bb75123cbd20e6d3925e7ce6022e8 Reviewed-by: Simo Fält Reviewed-by: Dimitrios Apostolou (cherry picked from commit 75db65454438dac62762fce5e1ef788f42b6d4c3) (cherry picked from commit 1a3d100ae2ca233b54ab7e5a1244a3455f3d4c7d) Reviewed-by: Qt Cherry-pick Bot --- .../70-install_QemuGA.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 coin/provisioning/qtci-linux-Ubuntu-24.04-aarch64/70-install_QemuGA.sh diff --git a/coin/provisioning/qtci-linux-Ubuntu-24.04-aarch64/70-install_QemuGA.sh b/coin/provisioning/qtci-linux-Ubuntu-24.04-aarch64/70-install_QemuGA.sh new file mode 100755 index 00000000..9a80fc0b --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-24.04-aarch64/70-install_QemuGA.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (C) 2020 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only + +# This script installs QEMU Guest Agent + +set -ex + +sudo apt -y install qemu-guest-agent +sudo systemctl start qemu-guest-agent