File: libapache2-mod-upload-progress.postinst

package info (click to toggle)
apache-upload-progress-module 0.1%2Bgit20100316-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 124 kB
  • ctags: 68
  • sloc: ansic: 658; sh: 27; makefile: 7
file content (20 lines) | stat: -rwxr-xr-x 263 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

case "$1" in
    configure)
	if [ -x /usr/sbin/a2enmod ]; then
		a2enmod upload_progress
	fi
	;;
    abort-upgrade|abort-remove|abort-deconfigure)
	;;
    *)
	echo "postinst called with unknown argument \`$1'" >&2
	;;
esac

#DEBHELPER#

exit 0