6 lines
131 B
Plaintext
6 lines
131 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
db_purge
|
||
|
fi
|