Initial commit erasing history
This commit is contained in:
parent
e04f86fd9a
commit
7d8751ffe8
712 changed files with 7348 additions and 0 deletions
14
roles/linroom/tasks/rstudio.yml
Normal file
14
roles/linroom/tasks/rstudio.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
- name: Add R repository
|
||||
block:
|
||||
- name: R repo - apt key
|
||||
ansible.builtin.get_url:
|
||||
url: https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc
|
||||
dest: /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
|
||||
- name: R repo - url
|
||||
ansible.builtin.apt_repository:
|
||||
repo: "deb https://cloud.r-project.org/bin/linux/ubuntu {{ansible_distribution_release}}-cran40/"
|
||||
state: present
|
||||
- name: Install R
|
||||
ansible.builtin.apt:
|
||||
name: r-base
|
||||
state: latest
|
Loading…
Add table
Add a link
Reference in a new issue