File: postinst

package info (click to toggle)
libapache2-mod-ldap-userdir 1.1.7-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 232 kB
  • ctags: 59
  • sloc: ansic: 538; makefile: 50; sh: 12
file content (11 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -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