From df3a154aff602217f4cadeb75c02b3bb5ce789ec Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 7 Dec 2023 15:41:46 +0100 Subject: [PATCH] Fix the 'state' definition. --- tasks/r-installation-deb.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/r-installation-deb.yml b/tasks/r-installation-deb.yml index 6744be1..24e8d3e 100644 --- a/tasks/r-installation-deb.yml +++ b/tasks/r-installation-deb.yml @@ -106,12 +106,12 @@ - name: r-installation-deb | Install some additional R modules from the deb repo ansible.builtin.apt: pkg: '{{ r_plugins_packages_list }}' - state: '{{ r_packages_state }}' + state: present cache_valid_time: 3600 - name: r-installation-deb | Install some packages required by R packages when installed from source ansible.builtin.apt: pkg: '{{ r_distribution_required_packages }}' - state: '{{ r_packages_state }}' + state: present cache_valid_time: 3600 tags: ['r_software', 'r_pkg', 'r_deps']