12 lines
160 B
Plaintext
12 lines
160 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
|
||
|
if [ -f /usr/share/debconf/confmodule ]; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
fi
|
||
|
. /usr/share/dbconfig-common/dpkg/prerm
|
||
|
|
||
|
db_stop
|
||
|
exit 0
|