7 lines
160 B
Plaintext
7 lines
160 B
Plaintext
|
#!/bin/sh
|
||
|
if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
db_purge
|
||
|
rm -rfv /etc/netsyms-business
|
||
|
fi
|