mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
commit
8a252c514e
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user