Switch the order of how the variables are listed in the readme
This commit is contained in:
12
README.md
12
README.md
@@ -13,12 +13,6 @@ ansible-ruby solves this by using rvm to install 1 or more versions of ruby. It
|
|||||||
Below is a list of default values along with a description of what they do.
|
Below is a list of default values along with a description of what they do.
|
||||||
|
|
||||||
```
|
```
|
||||||
# Which user should own all of rvm's files?
|
|
||||||
rvm1_user: '{{ ansible_ssh_user }}'
|
|
||||||
|
|
||||||
# Which group should rvm be installed to?
|
|
||||||
rvm1_group: 'rvm'
|
|
||||||
|
|
||||||
# Install 1 or more versions of ruby, just add them to the list.
|
# Install 1 or more versions of ruby, just add them to the list.
|
||||||
# The last version listed will be set as the default ruby.
|
# The last version listed will be set as the default ruby.
|
||||||
# Change it to `ruby_rubies:` if you want no rubies installed.
|
# Change it to `ruby_rubies:` if you want no rubies installed.
|
||||||
@@ -29,6 +23,12 @@ rvm1_rubies:
|
|||||||
# Example: `rvm1_delete_ruby: ruby-2.1.0`
|
# Example: `rvm1_delete_ruby: ruby-2.1.0`
|
||||||
rvm1_delete_ruby: ''
|
rvm1_delete_ruby: ''
|
||||||
|
|
||||||
|
# Which user should own all of rvm's files?
|
||||||
|
rvm1_user: '{{ ansible_ssh_user }}'
|
||||||
|
|
||||||
|
# Which group should rvm be installed to?
|
||||||
|
rvm1_group: 'rvm'
|
||||||
|
|
||||||
# Where should the rvm-installer and other temp files be downloaded to?
|
# Where should the rvm-installer and other temp files be downloaded to?
|
||||||
rvm1_temp_download_path: '/usr/local/src'
|
rvm1_temp_download_path: '/usr/local/src'
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
rvm1_user: '{{ ansible_ssh_user }}'
|
|
||||||
rvm1_group: 'rvm'
|
|
||||||
|
|
||||||
rvm1_rubies:
|
rvm1_rubies:
|
||||||
- 'ruby-2.1.2'
|
- 'ruby-2.1.2'
|
||||||
|
|
||||||
rvm1_delete_ruby:
|
rvm1_delete_ruby:
|
||||||
|
|
||||||
|
rvm1_user: '{{ ansible_ssh_user }}'
|
||||||
|
rvm1_group: 'rvm'
|
||||||
|
|
||||||
rvm1_temp_download_path: '/usr/local/src'
|
rvm1_temp_download_path: '/usr/local/src'
|
||||||
rvm1_install_path: '/usr/local/rvm'
|
rvm1_install_path: '/usr/local/rvm'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user