Skip to content

Commit be7ae8d

Browse files
committed
fixes RVM provisioning
rvm install 2.0.0 --latest-binary is not working at this moment. This patch uses an alternative that does work as of this writing. References rails#58.
1 parent cfcdbd6 commit be7ae8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

puppet/manifests/default.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
# The rvm executable is more suitable for automated installs.
136136
#
137137
# Thanks to @mpapis for this tip.
138-
command => "${as_vagrant} '${home}/.rvm/bin/rvm install 2.0.0 --latest-binary --autolibs=enabled && rvm --fuzzy alias create default 2.0.0'",
138+
command => "${as_vagrant} '${home}/.rvm/bin/rvm install 2.0 --fuzzy --binary --autolibs=enabled && rvm --fuzzy alias create default 2.0'",
139139
creates => "${home}/.rvm/bin/ruby",
140140
require => Exec['install_rvm']
141141
}

0 commit comments

Comments
 (0)