import 1.12-1etch1
This commit is contained in:
commit
c577ec8612
15 changed files with 346 additions and 0 deletions
11
postinst
Normal file
11
postinst
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue