Codebase list gom / lintian-fixes/main debian / gom.postrm
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

gom.postrm @lintian-fixes/mainraw · history · blame

#!/bin/sh -e
. /usr/share/debconf/confmodule

# Purging configuration gom
if [ "$1" = "purge" ]; then
	if ! rmdir /etc/gom 2>/dev/null; then
		db_input critical gom/purge_etc_gom || true
		db_go || true
		db_get gom/purge_etc_gom || true
		if [ "$RET" = true ]; then
			rm -r -f /etc/gom
		fi
	fi
	rm -f /etc/default/gom
fi

#DEBHELPER#