Initial commit erasing history
This commit is contained in:
parent
e04f86fd9a
commit
7d8751ffe8
712 changed files with 7348 additions and 0 deletions
16
roles/macroom/tasks/main.yml
Normal file
16
roles/macroom/tasks/main.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
- name: Download R
|
||||
get_url:
|
||||
url: https://cran.r-project.org/bin/macosx/base/R-4.2.1.pkg
|
||||
dest: /tmp/R-4.2.1.pkg
|
||||
- name: install R
|
||||
shell: installer -pkg /tmp/R-4.2.1.pkg -target /
|
||||
- name: Download RStudio
|
||||
get_url:
|
||||
url: https://download1.rstudio.org/desktop/macos/RStudio-2022.07.2-576.dmg
|
||||
dest: /tmp/RStudio-2022.07.2-576.dmg
|
||||
- name: mount RStudio .dmg
|
||||
shell: hdiutil attach /tmp/RStudio-2022.07.2-576.dmg
|
||||
- name: install RStudio
|
||||
shell: cp -a /Volumes/RStudio-2022.07.2-576 /Volumes/Applications
|
||||
- name: umount RStudio .dmg
|
||||
shell: hdiutil detach /Volumes/RStudio-2022.07.2-576
|
Loading…
Add table
Add a link
Reference in a new issue