Files
bitcoin/contrib/gitian-debian/postrm

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