Add RStudio
This commit is contained in:
parent
43a457a2ed
commit
99e10f5bf1
2
TODO.md
2
TODO.md
|
@ -15,6 +15,7 @@
|
||||||
- Orange
|
- Orange
|
||||||
- Pelles C for Windows
|
- Pelles C for Windows
|
||||||
- Python (latest)
|
- Python (latest)
|
||||||
|
- RStudio
|
||||||
- SWI-Prolog
|
- SWI-Prolog
|
||||||
- Thonny
|
- Thonny
|
||||||
- VirtualBox
|
- VirtualBox
|
||||||
|
@ -56,7 +57,6 @@
|
||||||
- IAR Embedded Workbench for ARM
|
- IAR Embedded Workbench for ARM
|
||||||
- LTspice IV
|
- LTspice IV
|
||||||
- Microsoft Visual Studio Code
|
- Microsoft Visual Studio Code
|
||||||
- RStudio
|
|
||||||
- SafeExamBrowser
|
- SafeExamBrowser
|
||||||
- Scala Programming Language Distribution
|
- Scala Programming Language Distribution
|
||||||
- VMware Workstation
|
- VMware Workstation
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
- import_tasks: pelles-c.yml
|
- import_tasks: pelles-c.yml
|
||||||
- import_tasks: processing.yml
|
- import_tasks: processing.yml
|
||||||
- import_tasks: python.yml
|
- import_tasks: python.yml
|
||||||
|
- import_tasks: rstudio.yml
|
||||||
- import_tasks: swi-prolog.yml
|
- import_tasks: swi-prolog.yml
|
||||||
- import_tasks: thonny.yml
|
- import_tasks: thonny.yml
|
||||||
- import_tasks: virtualbox.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…
Reference in a new issue