File: libapache2-mod-upload-progress.postinst

package info (click to toggle)
apache-upload-progress-module 0.1%2Bgit20110718-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 140 kB
  • sloc: ansic: 726; sh: 27; makefile: 23
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