-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.yml
64 lines (47 loc) · 1.75 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
# Install 1 or more versions of ruby
# The last ruby listed will be set as the default ruby
rvm1_rubies:
- 'ruby-3.2.4'
# Install bundler
rvm1_bundler_install: false
# Delete a specific version of ruby (ie. ruby-2.1.0)
rvm1_delete_ruby:
# Install path for rvm (defaults to user based install)
rvm1_install_path: '~/.rvm'
# Add or remove any install flags
# NOTE: If you are doing a ROOT BASED INSTALL then
# make sure you REMOVE the --user-install flag below
rvm1_install_flags: '--user-install'
# Add additional ruby install flags
rvm1_ruby_install_flags:
# Set the owner for the rvm directory
rvm1_user: 'ubuntu'
# URL for the latest installer script
rvm1_rvm_latest_installer: 'https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer'
# rvm version to use
rvm1_rvm_version: 'stable'
# Check and update rvm, disabling this will force rvm to never update
rvm1_rvm_check_for_updates: true
# GPG key verification, use an empty string if you want to skip this
# Note: Unless you know what you're doing, just keep it as is
# Identity proof: https://keybase.io/mpapis
# PGP message: https://rvm.io/mpapis.asc
# rvm1_gpg_keys: '409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB'
rvm1_gpg_keys: ''
# The GPG key server
rvm1_gpg_key_server: 'hkp://keys.openpgp.org'
# The GPG alternative key servers
rvm1_gpg_key_servers:
- '{{ rvm1_gpg_key_server }}'
- hkp://pgp.mit.edu
- hkp://keyserver.pgp.com
- hkp://keyserver.ubuntu.com
# autolib mode, see https://rvm.io/rvm/autolibs
rvm1_autolib_mode: 2
# Name of UID 0 user
root_user: 'root'
# Name of GID 0 group -- BSD systems typically use wheel instead of root
root_group: '{{ root_user }}'
# Symlink binaries to system path
rvm1_symlink: true