File: prerm

package info (click to toggle)
sleuthkit 2.06-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,128 kB
  • ctags: 5,133
  • sloc: ansic: 41,406; sh: 14,123; perl: 4,745; cpp: 4,297; makefile: 925; python: 29
file content (11 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$1" = remove ] || [ "$1" = deconfigure ]; then
	update-alternatives --remove icat /usr/bin/icat-sleuthkit
	update-alternatives --remove ils /usr/bin/ils-sleuthkit
	update-alternatives --remove mactime /usr/bin/mactime-sleuthkit
fi

exit 0