All Projects → geerlingguy → Ansible Role Ruby

geerlingguy / Ansible Role Ruby

Licence: mit
Ansible Role - Ruby

Programming Languages

ruby
36898 projects - #4 most used programming language
shell
77523 projects
language
365 projects

Projects that are alternatives of or similar to Ansible Role Ruby

Ansible Role Mysql
Ansible Role - MySQL
Stars: ✭ 826 (+972.73%)
Mutual labels:  ansible, playbook, role
Ansible Collection Hardening
This Ansible collection provides battle tested hardening for Linux, SSH, nginx, MySQL
Stars: ✭ 2,543 (+3202.6%)
Mutual labels:  ansible, playbook, role
Ansible Ssh Hardening
This Ansible role provides numerous security-related ssh configurations, providing all-round base protection.
Stars: ✭ 746 (+868.83%)
Mutual labels:  ansible, playbook, role
Ansible Nginx Hardening
This Ansible role provides secure nginx configurations.
Stars: ✭ 180 (+133.77%)
Mutual labels:  ansible, playbook, role
Ansible Mysql Hardening
This Ansible role provides security configuration for MySQL.
Stars: ✭ 132 (+71.43%)
Mutual labels:  ansible, playbook, role
Ansible Role Php
Ansible Role - PHP
Stars: ✭ 396 (+414.29%)
Mutual labels:  ansible, playbook, role
Ansible Role Htpasswd
Ansible Role - htpasswd
Stars: ✭ 17 (-77.92%)
Mutual labels:  ansible, role
Ansible Collection Gns3
Ansible Collection for GNS3 Server REST API using gns3fy
Stars: ✭ 19 (-75.32%)
Mutual labels:  ansible, playbook
Ansible Transmission
🕹 A TransmissionBT installation role for Ansible
Stars: ✭ 8 (-89.61%)
Mutual labels:  ansible, role
Ansible Role Php Xdebug
Ansible Role - PHP Xdebug
Stars: ✭ 34 (-55.84%)
Mutual labels:  ansible, role
Debops
DebOps - Your Debian-based data center in a box
Stars: ✭ 734 (+853.25%)
Mutual labels:  ansible, playbook
Ansible Role Docker
Ansible Role - Docker
Stars: ✭ 845 (+997.4%)
Mutual labels:  ansible, role
Ansible Role Seafile
An ansible role to deploy Seafile, an Open Source Cloud Storage. http://seafile.com/
Stars: ✭ 38 (-50.65%)
Mutual labels:  ansible, role
Ansible Prometheus
Ansible playbook for installing Prometheus monitoring system, exporters such as: node, snmp, blackbox, thus alert manager and push gateway
Stars: ✭ 69 (-10.39%)
Mutual labels:  ansible, playbook
Ansiblecm
A Docker based Ansible control machine for running playbooks in a consistent environment.
Stars: ✭ 26 (-66.23%)
Mutual labels:  ansible, playbook
Ansible Role Munin
Ansible Role - Munin
Stars: ✭ 27 (-64.94%)
Mutual labels:  ansible, role
Upcloud Ansible
Dynamic inventory and modules for managing servers via UpCloud's API
Stars: ✭ 50 (-35.06%)
Mutual labels:  ansible, playbook
Ansible Role Packer rhel
Ansible Role - Packer RHEL/CentOS Configuration for Vagrant VirtualBox
Stars: ✭ 45 (-41.56%)
Mutual labels:  ansible, role
Ansible Role Memcached
Ansible Role - Memcached
Stars: ✭ 54 (-29.87%)
Mutual labels:  ansible, role
Graphite Stack Ansible Vagrant
Provision a complete Graphite, StatsD & Grafana install using Ansible and (optionally) Vagrant
Stars: ✭ 62 (-19.48%)
Mutual labels:  ansible, playbook

Ansible Role: Ruby

CI

Installs Ruby and bundler gem on Linux.

Requirements

None.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

workspace: /root

The location where temporary files will be downloaded in preparation for Ruby installation.

ruby_install_bundler: true

Whether this role should install Bundler.

ruby_install_gems: []

A list of Ruby gems to install (just the name of the gem to be installed). This is meant as a simple convenience, and will only install the latest version of the gem. If you need to install gems with more options or specificity, you can do so elsewhere in your playbook.

ruby_install_gems_user: username

The user account under which Ruby gems will be installed. Defaults to the ansible_ssh_user if not set.

ruby_install_from_source: false

By default, this role will install whatever version of ruby is available through your system's package manager (apt or yum). You can install whatever version you like (including the latest release) by setting this to true and/or updating the ruby_download_url and ruby_version.

ruby_download_url: http://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.0.tar.gz

The URL from which Ruby will be downloaded (only used if ruby_install_from_source is true).

ruby_version: 3.0.0

The version of ruby that will be installed (only used if ruby_install_from_source is true).

ruby_source_configure_command: ./configure --enable-shared

The configure command that will be run (only used if ruby_install_from_source is true).

ruby_rubygems_package_name: rubygems

The name of the rubygems package. Generally, the default should work; but it will be set to rubygems-integration automatically on Ubuntu Trusty (14.04).

Dependencies

None.

Example Playbook

- hosts: server
  roles:
    - role: geerlingguy.ruby

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].