File: postinst

package info (click to toggle)
libapache2-mod-xmlrpc2 2.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 176 kB
  • ctags: 72
  • sloc: ansic: 747; sh: 43; makefile: 14
file content (16 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
	if [ -z "$2" ]; then
		if [ -x /usr/sbin/a2enmod ]; then
			/usr/sbin/a2enmod xmlrpc || true
		fi
	fi
fi

#DEBHELPER#

exit 0