diff --git a/README.md b/README.md index df4e49c..007f8c1 100644 --- a/README.md +++ b/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. ``` -# 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. # The last version listed will be set as the default ruby. # 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` 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? rvm1_temp_download_path: '/usr/local/src' diff --git a/defaults/main.yml b/defaults/main.yml index 28dfe6c..3674aa6 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,12 +1,12 @@ --- -rvm1_user: '{{ ansible_ssh_user }}' -rvm1_group: 'rvm' - rvm1_rubies: - 'ruby-2.1.2' rvm1_delete_ruby: +rvm1_user: '{{ ansible_ssh_user }}' +rvm1_group: 'rvm' + rvm1_temp_download_path: '/usr/local/src' rvm1_install_path: '/usr/local/rvm'