File: libapache-mod-auth-kerb.postinst

package info (click to toggle)
libapache-mod-auth-kerb 5.3-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 544 kB
  • ctags: 336
  • sloc: ansic: 3,093; makefile: 98; sh: 36
file content (13 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

for i in apache apache-ssl apache-perl; do
	if [ -e /etc/$i/httpd.conf ]; then
		modules-config $i enable mod_auth_kerb
	fi
done

#DEBHELPER#

exit 0