switch to official repo for rbenv

This commit is contained in:
Bryce Larson 2019-10-02 12:43:11 -06:00
parent aee25f6413
commit 622b8c58fc
No known key found for this signature in database
GPG key ID: 131C38B0F02DB4CA
3 changed files with 4 additions and 4 deletions

View file

@ -392387,7 +392387,7 @@ Rbenv will be installed automatically the first time it is needed and can be
updated later. This module will \fInot\fP automatically install packages which rbenv
will need to compile the versions of ruby. If your version of ruby fails to
install, refer to the ruby\-build documentation to verify you are not missing any
dependencies: \fI\%https://github.com/sstephenson/ruby\-build/wiki\fP
dependencies: \fI\%https://github.com/rbenv/ruby\-build/wiki\fP
.sp
If rbenv is run as the root user then it will be installed to /usr/local/rbenv,
otherwise it will be installed to the users ~/.rbenv directory. To make

View file

@ -121,7 +121,7 @@ def _install_rbenv(path, runas=None):
if os.path.isdir(path):
return True
cmd = ['git', 'clone', 'https://github.com/sstephenson/rbenv.git', path]
cmd = ['git', 'clone', 'https://github.com/rbenv/rbenv.git', path]
return __salt__['cmd.retcode'](cmd, runas=runas, python_shell=False) == 0
@ -131,7 +131,7 @@ def _install_ruby_build(path, runas=None):
return True
cmd = ['git', 'clone',
'https://github.com/sstephenson/ruby-build.git', path]
'https://github.com/rbenv/ruby-build.git', path]
return __salt__['cmd.retcode'](cmd, runas=runas, python_shell=False) == 0

View file

@ -9,7 +9,7 @@ Rbenv will be installed automatically the first time it is needed and can be
updated later. This module will *not* automatically install packages which rbenv
will need to compile the versions of ruby. If your version of ruby fails to
install, refer to the ruby-build documentation to verify you are not missing any
dependencies: https://github.com/sstephenson/ruby-build/wiki
dependencies: https://github.com/rbenv/ruby-build/wiki
If rbenv is run as the root user then it will be installed to /usr/local/rbenv,
otherwise it will be installed to the users ~/.rbenv directory. To make