blt04 / puppet-rvm

A puppet module for installing and using RVM (Ruby Version Manager)
Other
242 stars 280 forks source link

"Installing Passenger" not work on Debian, and solved #35

Closed k6waki closed 12 years ago

k6waki commented 12 years ago

I tried "Installing Passenger" on Debian squeeze. It didn't install passenger at all with no errors. After a short struggle, I found few missing.

It worked perfect with a trivial fix.

diff --git a/manifests/passenger/apache.pp b/manifests/passenger/apache.pp index 9e4a084..f453544 100644 --- a/manifests/passenger/apache.pp +++ b/manifests/passenger/apache.pp @@ -10,7 +10,7 @@ class rvm::passenger::apache( ) {

case $operatingsystem {

@@ -27,7 +27,7 @@ class rvm::passenger::apache( $binpath = "${rvm_prefix}rvm/bin/"

case $operatingsystem {

Thank you for a great job! The puppet-rvm saved me.