File: perdition.prerm

package info (click to toggle)
perdition 1.17-7
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 3,136 kB
  • ctags: 1,062
  • sloc: ansic: 10,877; sh: 8,769; makefile: 462; perl: 132
file content (14 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
# prerm script for perdition

#DEBHELPER#

make -C /etc/perdition/ clean > /dev/null

if [ "$1" = "purge"  -o "$1" = "remove" ]; then
	if [ -f /etc/init.d/perdition ]; then
		invoke-rc.d perdition stop
	fi
fi

exit 0