Skip to content

Commit

Permalink
Make use of https (#38)
Browse files Browse the repository at this point in the history
* Make use of https
* Cs fix
  • Loading branch information
mvdriel authored and tersmitten committed Aug 20, 2019
1 parent 802e3bd commit e45a6ed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## r

[![Build Status](https://travis-ci.org/Oefenweb/ansible-r.svg?branch=master)](https://travis-ci.org/Oefenweb/ansible-r)
[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-r-blue.svg)](https://galaxy.ansible.com/Oefenweb/r/)
[![Ansible Galaxy](https://img.shields.io/badge/ansible--galaxy-r-blue.svg)](https://galaxy.ansible.com/Oefenweb/r/)

Set up the latest version of R in Ubuntu systems.

Expand All @@ -14,8 +14,8 @@ Set up the latest version of R in Ubuntu systems.

* `r_version_35`: [default: `false`, for Ubuntu >= `18.04` always `true`]: Whether or not to install R 3.5

* `r_cran_mirror`: [default: `http://cran.rstudio.com/`]: Your favorite [CRAN mirror](http://cran.r-project.org/mirrors.html)
* `r_bioclite_url`: [default: `https://bioconductor.org/biocLite.R`]: The `biocLite.R` script URL for [Bioconductor](http://bioconductor.org/) installs
* `r_cran_mirror`: [default: `https://cran.rstudio.com/`]: Your favorite [CRAN mirror](https://cran.r-project.org/mirrors.html)
* `r_bioclite_url`: [default: `https://bioconductor.org/biocLite.R`]: The `biocLite.R` script URL for [Bioconductor](https://bioconductor.org/) installs

* `r_install_dev`: [default: `false`]: Whether or not install the `r-base-dev` package
* `r_install`: [default: `['littler']`]: Additional (apt) packages to install (e.g. `r-recommended`)
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
r_version_35: "{{ ansible_distribution_version is version('18.04', '>=') }}"

r_cran_mirror: http://cran.rstudio.com/
r_cran_mirror: https://cran.rstudio.com/
r_bioclite_url: https://bioconductor.org/biocLite.R

r_install_dev: false
Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ galaxy_info:
galaxy_tags:
- system
- r
- cran-r
- cran
- statistics
dependencies: []
4 changes: 2 additions & 2 deletions tests/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
state: present

- name: DBI
repos: http://lib.ugent.be/CRAN/
repos: https://lib.ugent.be/CRAN/
lib: /tmp

- name: colorspace
Expand All @@ -23,7 +23,7 @@
type: bioconductor

- name: shiny
repos: http://cran.rstudio.com/
repos: https://cran.rstudio.com/

- name: mangothecat/franc
type: github

0 comments on commit e45a6ed

Please sign in to comment.