Codebase list gom / debian/0.30.1-4 debian / gom.postrm
debian/0.30.1-4

Tree @debian/0.30.1-4 (Download .tar.gz)

gom.postrm @debian/0.30.1-4raw · 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
fi

if [ -x /sbin/update-modules ]; then
	/sbin/update-modules
fi

#DEBHELPER#