File: libapache2-mod-passenger.postinst

package info (click to toggle)
passenger 2.2.11debian-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 11,576 kB
  • ctags: 28,138
  • sloc: cpp: 66,323; ruby: 9,646; ansic: 2,425; python: 141; sh: 56; makefile: 29
file content (36 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh

set -e

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

#DEBHELPER#

exit 0