File: libapache-mod-auth-kerb.postinst

package info (click to toggle)
libapache-mod-auth-kerb 5.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 632 kB
  • ctags: 350
  • sloc: ansic: 3,236; makefile: 96; sh: 40
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