From ab430cfbffe11cf1a97e317d544e7ecfc4903041 Mon Sep 17 00:00:00 2001 From: Khaled Elkhawaga Date: Wed, 20 Nov 2019 19:54:28 +0100 Subject: [PATCH] Replace deprecated apt parameter Replace the deprecated "state: installed" parameter with "state: present" as it's no longer supported in Ansible 2.9 Change-Id: I78c8595228f1aabded6cd23159c2a889738f3288 Signed-off-by: Khaled Elkhawaga --- tasks/rhel7stig/apt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/rhel7stig/apt.yml b/tasks/rhel7stig/apt.yml index ecc7c688..e749102c 100644 --- a/tasks/rhel7stig/apt.yml +++ b/tasks/rhel7stig/apt.yml @@ -16,7 +16,7 @@ - name: Ensure debsums is installed apt: name: debsums - state: installed + state: present when: security_check_package_checksums | bool - name: Gather debsums report