File: postinst

package info (click to toggle)
squirrelmail-lockout 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 192 kB
  • ctags: 168
  • sloc: php: 171; sh: 142; makefile: 42
file content (16 lines) | stat: -rw-r--r-- 254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

case "$1" in
	configure)
		if [ -x /usr/sbin/squirrelmail-configure ]; then
			/usr/sbin/squirrelmail-configure --remove-plugin lockout
			/usr/sbin/squirrelmail-configure --install-plugin lockout
		fi
	;;
	*)
	;;
esac

#DEBHELPER#

exit 0