7 lines
111 B
Plaintext
7 lines
111 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "purge" ] ; then
|
||
|
update-rc.d dns-flood-detector remove >/dev/null || exit $?
|
||
|
fi
|