File: libapache2-mod-auth-mysql.prerm

package info (click to toggle)
libapache-mod-auth-mysql 4.3.9-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 476 kB
  • ctags: 113
  • sloc: ansic: 1,270; makefile: 72; sh: 26
file content (13 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = "remove" -o "$1" = "purge" ]; then
	if [ -e /etc/apache2/apache2.conf -a -x /usr/sbin/a2dismod ]; then
		/usr/sbin/a2dismod auth_mysql || true
	fi
fi

#DEBHELPER#

exit 0