Merge pull request #12313 from gtmanfred/rvm

Follow redirects for rvm installer
This commit is contained in:
Thomas S Hatch 2014-04-25 21:37:36 -06:00
commit b4cbe18093

View File

@ -79,7 +79,7 @@ def install(runas=None):
ret = __salt__['cmd.run_all'](
# the RVM installer automatically does a multi-user install when it is
# invoked with root privileges
'curl -s {installer} | bash -s stable'.format(installer=installer),
'curl -Ls {installer} | bash -s stable'.format(installer=installer),
runas=runas
)
if ret['retcode'] > 0: