Merge branch 'master' of andrea.dellamico/ansible-playbooks into master

This commit is contained in:
Andrea Dell'Amico 2019-05-03 13:35:15 +02:00 committed by Gitea
commit f70c5ce92a
1 changed files with 7 additions and 2 deletions

View File

@ -64,18 +64,22 @@
- name: Install the rconnector add users script
become_user: root
template: src=rusersadd.j2 dest={{ r_connector_adduserscript }} owner=root group=root mode=0555
tags: [ 'smartgears', 'r_connector', 'r_connector_conf', 'tomcat' ]
- name: Install the script that unmounts the remote workspace
become_user: root
template: src=rconnector_unmount dest={{ r_connector_workspace_unmount }} owner=root group=root mode=0555
tags: [ 'smartgears', 'r_connector', 'r_connector_conf', 'tomcat' ]
- name: Install the script that checks for stale workspace mounts
become_user: root
template: src=rconnector_check_stale_sessions dest={{ r_connector_check_stale_sessions }} owner=root group=root mode=0555
tags: [ 'smartgears', 'r_connector', 'r_connector_conf', 'tomcat' ]
- name: Install the cron job that regulary wipes out the stale workspace mounts
become: root
cron: name="Unmount the stale workspace sessions" special_time=hourly job="{{ r_connector_check_stale_sessions }} >/dev/null 2>&1"
become_user: root
cron: name="Unmount the stale workspace sessions" special_time=hourly job="{{ r_connector_check_stale_sessions }} >/dev/null 2>&1" user=root
tags: [ 'smartgears', 'r_connector', 'r_connector_conf', 'tomcat' ]
- name: Crete the directory that will host the RConfiguration stuff
become_user: root
@ -91,6 +95,7 @@
- name: Install /etc/R/Rprofile.site as a symlink to the svn repository
become_user: root
file: src={{ r_connector_rprofile_path }}/.Rprofile dest=/etc/R/Rprofile.site state=link force=yes
tags: [ 'smartgears', 'r_connector', 'r_connector_conf', 'tomcat' ]
- name: Install the cron job that regulary updates the Rprofile
cron: name="Update the RStudioConfiguration repo" special_time=daily job="cd {{ r_connector_rprofile_path }} ; svn update >/dev/null 2>&1"