From mboxrd@z Thu Jan 1 00:00:00 1970 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 5013684A35 for ; Fri, 12 Apr 2024 17:47:03 +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=1712944023; cv=none; b=V3SMYh8XhvqJ/NdgKY0HpghMMsrsHQ/aeGeNbsSkXd1oYg8P8rGzJfL+O/X6iOJHasg9CnhhmG6lcWVmTk/JKiE0CKnwCrDHJunIXPU5xBDfm9MEOQ5XZ0A9uVeJcd8rqZ8JU0MGeLPE5mwFXB3Z07rNopvsYP3acIXhpjt7fRg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712944023; c=relaxed/simple; bh=nW/xYcDMASeDuZXaAGaEWnMW6PKyeQ6Inefd67mE+0c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=oyLYymjeJvlcsI3IgTNBiv3RQQK2OvVlCc3Dnqln3Bc8ADeOvLaF23QnlQn+9aVMGMNIcx8fqU6JmiOgIFGpjXjwf1USAR/vvrquEqcBNn4YT8++F+hXSP8/yqpSOADTrKoetBK1x6pxGJS7dbx9nApjFm3T1IwgI+bzCqYV2ec= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=tQBhOc9F; 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="tQBhOc9F" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E9397C2BBFC; Fri, 12 Apr 2024 17:47:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1712944023; bh=nW/xYcDMASeDuZXaAGaEWnMW6PKyeQ6Inefd67mE+0c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tQBhOc9FjeZWpUsVfkio47nDK0rdWqriEKj/znI8H8XcLGM6qVt4cMA2//8xmwGtY wfhYxS2ndEjpZswaiTiGxz1FHx9qaFsMGEGncj+IEi7U6trM9tCnhWVM2wRL/XBHs7 pXt2VjYPbDmigzbW0sbMoftQylChic5c3QdYmjP6fEom6MGuhveHAAeAe7THdgCCPz bQAKN5QdcNsp/IPTszVRXhcHINt05o7Uxj+3dh8l4zPRG+rAdSBhTzFXJNzm1fZbc8 JWvpdFn6tAOXmEI1FByq+z0o1QLpApRPyYF+9tHn9pp4IL8qaqK7QpJ8sOYHT6X4hn BwqjpJb3PVr1w== From: cel@kernel.org To: Cc: Chuck Lever Subject: [RFC PATCH 02/22] bootlinux: Replace the use of the community.general.zypper module Date: Fri, 12 Apr 2024 13:46:35 -0400 Message-ID: <20240412174655.722290-3-cel@kernel.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240412174655.722290-1-cel@kernel.org> References: <20240412174655.722290-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever The lack of a disable_recommends parameter might be a problem. Signed-off-by: Chuck Lever --- playbooks/roles/bootlinux/tasks/install-deps/suse/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/bootlinux/tasks/install-deps/suse/main.yml b/playbooks/roles/bootlinux/tasks/install-deps/suse/main.yml index 559da7bf2dde..d3c02fb34193 100644 --- a/playbooks/roles/bootlinux/tasks/install-deps/suse/main.yml +++ b/playbooks/roles/bootlinux/tasks/install-deps/suse/main.yml @@ -2,7 +2,7 @@ - name: Install Linux kernel build dependencies for SUSE sources become: yes become_method: sudo - zypper: + ansible.builtin.package: name: - bison - flex @@ -27,4 +27,4 @@ - portmap - hwinfo - open-iscsi - disable_recommends: no + state: present -- 2.44.0