puppet-rvm icon indicating copy to clipboard operation
puppet-rvm copied to clipboard

A puppet module for installing and using RVM (Ruby Version Manager)

Results 37 puppet-rvm issues
Sort by recently updated
recently updated
newest added

``` CentOS,RedHat,Amazon: { require rvm::dependencies::centos } OracleLinux,RedHat: { require rvm::dependencies::oraclqelinux } ``` RedHat is duplicated in both, and that raises an error in geppetto

If i first install the blow dvm rvm_system_ruby { 'ree-1.8.7-2012.02': ensure => 'present', require => Class['rvm::system'], default_use => true; } and then i want to install ruby-other-version, and if i...

Amazon linux runs down the centos dependencies path, but in /dependencies/centos.pp, there is a version number-specific conditional for the curl-devel / libcurl-devel dependency that only works on centos. Amazon Linux...

Something like: ``` rvm_system_ruby { 'ruby-1.9.3-p327': ensure => 'present', default_use => true; $ruby_187: #rails 2.3.5 has issues with newer rubygems. See notes at: # http://www.redmine.org/projects/redmine/wiki/RedmineInstall/123 rubygems => '1.4.2', ensure =>...

Using this as node config for a ubuntu 12.04 system; ``` rvm_system_ruby { 'ruby-2.0.0-p195': ensure => 'present', default_use => true; } class { 'rvm::passenger::apache': version => "4.0.2", ruby_version => "ruby-2.0.0-p195",...

When booting a new system, RVM will not successfully install on the first try. First you must SSH into the box and run `sudo apt-get update`, then re-run `vagrant provision`...

CentOS 6.3 user here. centos.pp tries to install the libyaml-devel package, but this doesn't exist. Should there be an EPEL prerequisite added for this?

RVM will install all the packages that it needs in order to run. In addition, RVM provides an rvm autolibs command flag that installs Ruby dependencies. Would it not make...

Should be: ``` ${gempath}/passenger-${version}/buildout/apache2/mod_passenger.so ``` instead of ``` ${gempath}/passenger-${version}/ext/apache2/mod_passenger.so ``` ...both in the exec running passenger-install-apache and in the file defining the contents of passenger.load

I have a "working" rvm::passenger::nginx which is closely modeled on the apache version, except that of course with nginx you have to _compile_ the web server with the module. It...