vagrant - Is there a Ruby 2.1.1pXX patch with binaries that I can use with Puppet? -


i want able provision centos box using puppet

/home/vagrant/.rvm/bin/rvm install ruby-2.1.1 --binary --autolibs=enabled && rvm alias create default 2.1.1

so far have added puppet manifest:

$ruby_version = 2.1.1p76  exec { 'install_ruby':   # run rvm executable directly because shell function assumes   # interactive environment, in particular display messages or ask questions.   # rvm executable more suitable automated installs.   #   # use ruby patch level known have binary   command => "${as_vagrant} '${home}/.rvm/bin/rvm install ruby-${ruby_version} --binary --autolibs=enabled && rvm alias create default ${ruby_version}'",    creates => "${home}/.rvm/bin/ruby",   require => exec['install_rvm'] } 

and won't work because 2.1.1p76 has no binaries.

i haven't been able find out patch contain binaries... anyone?


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

objective c - Greedy NSProgressIndicator Allocation -

how to set an OCR language in Google Drive -