File: postrm

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 (17 lines) | stat: -rw-r--r-- 217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

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

#DEBHELPER#

exit 0