aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/se-Enafors (follow)
AgeCommit message (Expand)AuthorFilesLines
2015-11-22Add Teracom transmitters in Sweden.Benjamin Larsson1-0/+5
yancat.postrm?h=debian/1.2.2-1&id=10c026a2c65bdfe8c1073698c8e5c636b096cee8'>plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

case "$1" in
	purge)
		if [ -x /usr/sbin/update-inetd ]; then
			update-inetd --remove nyancat
		fi
		;;
	remove)
		update-inetd --disable nyancat
		;;
	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
		;;
	*)
		echo "$0: unknown action \"$1\""
		exit 0
		;;
esac

#DEBHELPER#

exit 0