Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

r-project (2) Versions 0.1.0

Installs/Configures R

Policyfile
Berkshelf
Knife
cookbook 'r-project', '= 0.1.0', :supermarket
cookbook 'r-project', '= 0.1.0'
knife supermarket install r-project
knife supermarket download r-project
README
Dependencies
Quality -%

Description

This cookbook installs and configures R. It also contains an
R_package provider which can be used in recipes to install R packages
from CRAN.

Requirements

  • apt: Required for APT installation.
  • build-essential: Required for source installation.

Attributes

  • node['R']['cran_mirror]: Used by the Rprofile.site template
    to set the system-wide default CRAN mirror.

  • node['R']['version']: The R version to install. When using Apt, set
    to nil to always get the latest version.

  • node['R']['config_opts]: Options to pass to R's configure
    script. Source install only.

Providers

R_package

The R_package provider can be used to manage packages available in the
CRAN repository. Currently to use this provider, your default CRAN
mirror must be set. The default recipe sets this for you.

Actions

  • :install: Installs the package from CRAN. Does nothing if the
    package is already installed. [default]

  • :upgrade: Upgrades the package to the latest version. Currently
    this will re-install the package even if it is at the latest
    version.

  • :remove: Removes the package if it is installed.

Examples

Install a package:

R_package "snow"

Remove a package:

R_package "snow" do
    action :remove
end

Usage

Add the default recipe to the run_list of a node or role.

Dependent cookbooks

apt >= 0.0.0
build-essential >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found