File: postinst

package info (click to toggle)
libapache2-mod-ldap-userdir 1.1.17-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 272 kB
  • ctags: 111
  • sloc: ansic: 1,117; makefile: 62; sh: 14
file content (13 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = configure ] && [ -z "$2" ]; then
	if [ -e /etc/apache2/apache2.conf ] && [ -x /usr/sbin/a2enmod ]; then
		/usr/sbin/a2enmod ldap_userdir || true
	fi
fi

#DEBHELPER#

exit 0