Make default rvm1_user as a non root user

This commit is contained in:
Paul Montero
2016-11-11 12:37:03 -05:00
parent c9e26c7345
commit d6534a311f

View File

@@ -11,19 +11,19 @@ rvm1_bundler_install: True
# Delete a specific version of ruby (ie. ruby-2.1.0) # Delete a specific version of ruby (ie. ruby-2.1.0)
rvm1_delete_ruby: rvm1_delete_ruby:
# Install path for rvm (defaults to system wide) # Install path for rvm (defaults to user based install)
rvm1_install_path: '/usr/local/rvm' rvm1_install_path: '~/.rvm'
# Add or remove any install flags # Add or remove any install flags
# NOTE: If you are doing a USER BASED INSTALL then # NOTE: If you are doing a ROOT BASED INSTALL then
# make sure you ADD the --user-install flag below # make sure you REMOVE the --user-install flag below
rvm1_install_flags: '--auto-dotfiles' rvm1_install_flags: '--auto-dotfiles --user-install'
# Add additional ruby install flags # Add additional ruby install flags
rvm1_ruby_install_flags: rvm1_ruby_install_flags:
# Set the owner for the rvm directory # Set the owner for the rvm directory
rvm1_user: 'root' rvm1_user: 'ubuntu'
# URL for the latest installer script # URL for the latest installer script
rvm1_rvm_latest_installer: 'https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer' rvm1_rvm_latest_installer: 'https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer'