Fix the 'state' definition.
This commit is contained in:
parent
61b064a5ab
commit
df3a154aff
|
@ -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']
|
||||
|
|
Loading…
Reference in New Issue