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 6E35814C596 for ; Fri, 12 Apr 2024 17:47:10 +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=1712944030; cv=none; b=gACPj+tTJ0/5vEEkvOmu69dHPINHUU2L+A7DLflmuPIxuQIc4UyhSY3K1qKJnRs0yqJiWGhBdrvHUjElACyQ5Spfa9OWA8qQh9A1tBZUzQJqxP+VRCVtkfXfLB1q+JSnOo2h1MQeUtbFxOb3InwZ3kMXvzdMWFaPY5MYpFW+uVw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712944030; c=relaxed/simple; bh=Jof4dDoM2O99msIZ+0epXVoHrHbAKIjxgFPZ5LVr878=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RByAZM4UuIqUuGkYMTVek8UNzCVaEnG5YI0TQQyIf4at8m1a+n0onQKjUVucSQCUXxZpJkOtjWq3whtSK6kOBTiNzMDQLwsSilic6ER1PMMOQJtOnwCN2l3GdtEh7tireJAks5sYdaP9UA7jikpY18vNCHnTjC/haEm2vDJO6D0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Vr4wCpkN; 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="Vr4wCpkN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0CEBCC113CC; Fri, 12 Apr 2024 17:47:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1712944030; bh=Jof4dDoM2O99msIZ+0epXVoHrHbAKIjxgFPZ5LVr878=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Vr4wCpkNRCDC2usPqietxNGnY3J6LhijVv/1+iyQKSU+l4HPF65qMpIwpEMqaUm5M LLlxOd8J5bnuRiERZLA+LgkX5hPK2PDRqenZSig1So+1/h4PthqlmW1p9TSEHVOH3O OeG9Ol1jGdanwkEihVia51jE4oKSyslzdkUuA4X6AiiBAtFyE99BLWS9wLsm9wVQGd 3tC4BA3xeZ9vjiHn3ihVrTPUv/dH1Yb2Or1qpP0H5NG0tvSKqSgxV70YA9buXQL4I1 lTE0OJJgZBhV/Ya9Vh+hlnu1RJoqOQmKsu16RBBGJl3QRbFxx800py4jxNTTD1M6s4 xs77K3lnpqKlA== From: cel@kernel.org To: Cc: Chuck Lever Subject: [RFC PATCH 08/22] kotd-rev-kernel: Replace the use of the community.general.zypper module Date: Fri, 12 Apr 2024 13:46:41 -0400 Message-ID: <20240412174655.722290-9-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 the allow_vendor_change, disable_recommends, force_resolution, and force parameters might be a problem. Signed-off-by: Chuck Lever --- .../roles/devconfig/tasks/kotd-rev-kernel/suse/main.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/playbooks/roles/devconfig/tasks/kotd-rev-kernel/suse/main.yml b/playbooks/roles/devconfig/tasks/kotd-rev-kernel/suse/main.yml index a0c78d974dfe..f73939f166ed 100644 --- a/playbooks/roles/devconfig/tasks/kotd-rev-kernel/suse/main.yml +++ b/playbooks/roles/devconfig/tasks/kotd-rev-kernel/suse/main.yml @@ -82,15 +82,11 @@ - name: Install kotd become: yes become_method: sudo - zypper: + ansible.builtin.package: name: - kernel-default update_cache: yes - allow_vendor_change: yes - disable_recommends: no - force_resolution: yes state: latest - force: yes when: - devconfig_enable_kotd|bool tags: [ 'kotd' ] -- 2.44.0