drop my own scripts

This commit is contained in:
Jan Wagner 2007-07-04 13:28:21 +00:00
parent 1da26f2cb0
commit f9d21ed498
3 changed files with 0 additions and 22 deletions

11
debian/postinst vendored
View file

@ -1,11 +0,0 @@
#!/bin/sh
set -e
if [ -x "/etc/init.d/dns-flood-detector" ]; then
update-rc.d dns-flood-detector defaults 40 >/dev/null
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d dns-flood-detector start || exit $?
else
/etc/init.d/dns-flood-detector start || exit $?
fi
fi

6
debian/postrm vendored
View file

@ -1,6 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ] ; then
update-rc.d dns-flood-detector remove >/dev/null || exit $?
fi

5
debian/prerm vendored
View file

@ -1,5 +0,0 @@
#!/bin/sh
set -e
# work without debhelper since only kill stops the app (for now)
killall -9 dns-flood-detector