Sha256: eaa923636ccf74fa1bff9a777de469c82e6e7fe60221033f1550059711b6d325
Contents?: true
Size: 711 Bytes
Versions: 90
Compression:
Stored size: 711 Bytes
Contents
#!/bin/sh set -e #DEBHELPER# if [ "$1" != "configure" ]; then exit 0 fi reload_apache() { if apache2ctl configtest 2>/dev/null; then invoke-rc.d apache2 force-reload || true else echo "Your apache2 configuration is broken, so we're not restarting it for you." fi } if [ -n "$2" ]; then # we're upgrading. test if we're enabled, and if so, restart to reload the module. if [ -e /etc/apache2/mods-enabled/passenger.load ]; then reload_apache fi exit 0 fi if [ -e /etc/apache2/apache2.conf ]; then # Enable the module, but hide a2enmod's misleading message about apachectl # and force-reload the thing ourselves. a2enmod passenger >/dev/null || true reload_apache fi exit 0
Version data entries
90 entries across 88 versions & 4 rubygems