From patchwork Thu Mar 6 12:38:43 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Gomez X-Patchwork-Id: 14004414 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3E157202C5C for ; Thu, 6 Mar 2025 12:39:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741264745; cv=none; b=sU2Y+XHLggM6A/eEu1F4iLr8SgFexVO3eskdr5mmj3tGTfYlKIy8q+v2qy/sNkTZUK4RnEy+T/OpcxJfgJLngdCqAhMFUu/zI6fHxqiXad69JQOIiThjG2/PHklGMQ5JsAmiMbT3PMJADdbVoWYGqvGcVvsS9cYv+38cblrt9Qk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741264745; c=relaxed/simple; bh=/o7u4lQfCNlhw0saTFLWKxY/eOAxuRX9eLPaJ99bpVw=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=uE4ENw1hPqYVdxIBYkidNL5GDGsUJ5d3zx11GSuhHjEd6D9tBZVy/wy72+9PrSr/UgUhlm9W087dGa+xtuzVqsBa9Wz+IWq+KVSNlDCQikR0OpdTbAMhk6WHa8z1zha/TzYDLyhkqsuYSazpX8e5HuOAu/xid2lUTBg2QWeqPCg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BI9ZhBAp; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="BI9ZhBAp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A86E1C4CEE2; Thu, 6 Mar 2025 12:39:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1741264744; bh=/o7u4lQfCNlhw0saTFLWKxY/eOAxuRX9eLPaJ99bpVw=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=BI9ZhBApV/P4TqgBGvyOxjz5s7h+RyVfF9W+QKiHeyUZPyiJyk+7kEz0X9g+LWeyd B3bM5Oy3i9rMCDQoFh0Q7Eu+/3gGd544aNxVIeuBBJ/0B5lhSoSNi0s04g2UKJy503 6K6CM8E13fZeXjKuOwzj5AAvTCogXWz/OmcWgb2Rx+mE3QtUJe/RRPJaJdQR9adDTF K9OqLhXg52QUsjX1t8PvEqiLMJO/1IiHBirlH4I57rwtxBY5aWHx/JKXMt+3ZR5fZS UILk4FvX+lETkMIQTuex8Q33yf+sez8CHnIlJzhvRk/w5c2AohLGbN2ubnJ/oLw4Vh hItBO0Ug9HZQg== From: Daniel Gomez Date: Thu, 06 Mar 2025 12:38:43 +0000 Subject: [PATCH v2 1/2] ansible: libvirt_user: Install libvirt-daemon-config-network for debian Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20250306-fix-bringup-network-v2-1-85298d7a0ba5@samsung.com> References: <20250306-fix-bringup-network-v2-0-85298d7a0ba5@samsung.com> In-Reply-To: <20250306-fix-bringup-network-v2-0-85298d7a0ba5@samsung.com> To: Luis Chamberlain , Chuck Lever , Joel Granados Cc: kdevops@lists.linux.dev, Daniel Gomez X-Mailer: b4 0.14.2 From: Joel Granados Iinstall libvirt-daemon-config-network: so we have networks/defaults.xml on the system and are sure we are able to generate the virtual network if needed. Signed-off-by: Joel Granados Signed-off-by: Daniel Gomez --- playbooks/roles/libvirt_user/tasks/install-deps/debian/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/libvirt_user/tasks/install-deps/debian/main.yml b/playbooks/roles/libvirt_user/tasks/install-deps/debian/main.yml index 792597f930271bae53dfce1314d0aba7e5d618f1..463c1517b1d8b9999fac05e7f0970f278ccfb813 100644 --- a/playbooks/roles/libvirt_user/tasks/install-deps/debian/main.yml +++ b/playbooks/roles/libvirt_user/tasks/install-deps/debian/main.yml @@ -13,6 +13,7 @@ name: - libvirt-daemon - libvirt-daemon-system + - libvirt-daemon-config-network - libvirt-clients - qemu-kvm - qemu-system-x86