Add RStudio
This commit is contained in:
parent
43a457a2ed
commit
99e10f5bf1
3 changed files with 20 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
- import_tasks: pelles-c.yml
|
||||
- import_tasks: processing.yml
|
||||
- import_tasks: python.yml
|
||||
- import_tasks: rstudio.yml
|
||||
- import_tasks: swi-prolog.yml
|
||||
- import_tasks: thonny.yml
|
||||
- import_tasks: virtualbox.yml
|
||||
|
|
18
roles/classroom/tasks/rstudio.yml
Normal file
18
roles/classroom/tasks/rstudio.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
- name: Install R.Studio
|
||||
win_chocolatey:
|
||||
name: r.project, r.studio
|
||||
|
||||
- name: Create configuration directory
|
||||
win_file:
|
||||
path: "%PROGRAMDATA%\\RStudio"
|
||||
state: directory
|
||||
|
||||
- name: Disable crash reporting
|
||||
win_copy:
|
||||
dest: "%PROGRAMDATA%\\RStudio\\crash-handler.conf"
|
||||
content: crash-handling-enabled=0
|
||||
|
||||
- name: Disable update notifications
|
||||
win_copy:
|
||||
dest: "%PROGRAMDATA%\\RStudio\\rstudio-prefs.json"
|
||||
content: { "check_for_updates": false }
|
Loading…
Add table
Add a link
Reference in a new issue