File: libapache2-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 (11 lines) | stat: -rw-r--r-- 111 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

#DEBHELPER#
if [ "$1" = "configure" ]; then
        a2enmod auth_kerb || true
fi

exit 0