From 572387dad278106d96b0114cb7731413d399987b Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 5 Jun 2017 18:42:37 +0200 Subject: [PATCH] library/roles/shinyproxy/templates/shinyproxy-conf.yml.j2: Remove the groups limitations from the example apps. --- shinyproxy/templates/shinyproxy-conf.yml.j2 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shinyproxy/templates/shinyproxy-conf.yml.j2 b/shinyproxy/templates/shinyproxy-conf.yml.j2 index 51b75ac..d9744d1 100644 --- a/shinyproxy/templates/shinyproxy-conf.yml.j2 +++ b/shinyproxy/templates/shinyproxy-conf.yml.j2 @@ -39,11 +39,9 @@ shiny: description: Application which demonstrates the basics of a Shiny app docker-cmd: ["R", "-e shinyproxy::run_01_hello()"] docker-image: openanalytics/shinyproxy-demo - groups: scientists, mathematicians - name: 06_tabsets docker-cmd: ["R", "-e shinyproxy::run_06_tabsets()"] docker-image: openanalytics/shinyproxy-demo - groups: scientists {% endif %} {% if shinyproxy_apps is defined %} {% for app in shinyproxy_apps %} @@ -52,6 +50,9 @@ shiny: description: {{ app.description }} docker-cmd: ["R", "-e {{ app.cmd }}"] docker-image: {{ app.docker_image }} + {% if app.groups is defined %} + groups: {{ app.groups }} + {% endif %} {% endfor %} {% endif %}