To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / extra / soundsoftware / vagranttest / provision.d / 010-passenger.sh @ 1578:06ca2df3d7ca

History | View | Annotate | Download (276 Bytes)

1 1577:e38eee2e1d47 Chris
#!/bin/bash
2
3
set -e
4
5
# Passenger gets installed through gem, not apt
6
7
if [ ! -f /var/lib/gems/2.3.0/gems/passenger-4.0.60/buildout/apache2/mod_passenger.so ]; then
8
    gem install passenger -v 4.0.60 --no-rdoc --no-ri
9
    passenger-install-apache2-module --languages=ruby
10
fi