Version information
released May 5th 2017
This version is compatible with:
- Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >=2.7.20 <5.0.0
Start using this module
Add this module to your Puppetfile:
mod 'skydivemarius-rshiny', '1.1.2'
Learn more about managing modules with a PuppetfileDocumentation
skydivemarius/rshiny — version 1.1.2 May 5th 2017
puppet-r-shiny
Puppet module for provisioning shiny server from RStudio
Usage
include ::shinyserver
Managed repository
By default the module is using the upstream repository of RStudio (download3.rstudio.org).
class { '::shinyserver':
manage_repo => true,
}
Not managed repository
In this case the module assumes, that an RPM with the name "shiny-server" is already available in the system repositories.
class { '::shinyserver':
manage_repo => true,
}
Internal R packages
All required internal R packages are installed via the module neilhanlon/r, which is using by default the CRAN repositories.
Parameters
- port: HTTP port shiny is listening on (Default: 3838)
- site_directory: Root directory of all Shiny apps (Default: /srv/shiny-server)
- log_directory: Root directory of all logs (/var/log/shiny-server)
- directory_index: When a user visits the base URL rather than a particular application, an index of the applications available in this directory will be shown or not. (Default: on)
- mange_repo: Use official RStudio upstream repository for installation
- version: Shiny server version, only relevant when mange_repo=true (Current default: 1.5.3.838)
Dependencies
- puppetlabs/stdlib (>=3.2.0 <5.0.0)
- neilhanlon/r (>=0.0.1)
MIT License Copyright (c) 2017 Marius Meißner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.