pkg://agave_0.4.5-2_amd64.deb:343716/postrm
info downloads
#!/bin/sh
set -e
# Automatically added by dh_scrollkeeper
if [ "$1" = "remove" ] && which scrollkeeper-update >/dev/null 2>&1; then
scrollkeeper-update -q
fi
# End automatically added section
# Automatically added by dh_gconf
if [ "$1" = purge ]; then
OLD_DIR=/etc/gconf/schemas
SCHEMA_FILES="agave.schemas "
if [ -d $OLD_DIR ]; then
for SCHEMA in $SCHEMA_FILES; do
rm -f $OLD_DIR/$SCHEMA
done
rmdir -p --ignore-fail-on-non-empty $OLD_DIR
fi
fi
# End automatically added section