File: libapache2-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 (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