Fix the 'state' definition.

This commit is contained in:
Andrea Dell'Amico 2023-12-07 15:41:46 +01:00
parent 61b064a5ab
commit df3a154aff
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 2 deletions

View File

@ -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']