#!/bin/sh set -e if [ "$1" != "configure" ]; then exit 0 fi if [ -e /etc/apache2/apache2.conf ]; then a2enmod ruby || true fi exit 0