import 1.12-1etch1

This commit is contained in:
Jan Wagner 2008-03-26 00:53:54 +00:00
commit c577ec8612
15 changed files with 346 additions and 0 deletions

11
postinst Normal file
View file

@ -0,0 +1,11 @@
#!/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