From 8e2583ddabc199ee14e8ca0f53ecaa67690abe62 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Thu, 29 Feb 2024 12:53:48 +1000 Subject: [PATCH] Fix: Remove unsupported param with ansible 9x Error: Unsupported parameters for (ansible.legacy.command) module: warn. Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, expand_argument_vars, removes, stdin, stdin_add_newline, strip_empty_ends. Issue: RELENG-5175 Signed-off-by: Anil Belur Change-Id: I20029e1bcf03b68a4a4681a23e332a8bcb5a0d97 --- provision/install-base-pkgs-RedHat.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/provision/install-base-pkgs-RedHat.yaml b/provision/install-base-pkgs-RedHat.yaml index f02ed4d..c4d9513 100644 --- a/provision/install-base-pkgs-RedHat.yaml +++ b/provision/install-base-pkgs-RedHat.yaml @@ -149,8 +149,6 @@ manager: auto - name: Replace git with git236 ansible.builtin.command: yum replace -y git --replace-with git236 - args: - warn: false when: ansible_facts.packages['git'] is defined become: true when: -- 2.16.6