mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-05-24 12:54:07 +02:00
10 lines
237 B
Bash
10 lines
237 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
|
|
# Source debconf library
|
|
. /usr/share/debconf/confmodule
|
|
# Remove my changes to the db
|
|
echo "Purging debconf for bitcoincl"
|
|
db_purge || true
|
|
fi
|