#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	rm -f /etc/openoffice/dictionary.lst*
	rmdir /etc/openoffice 2>&1 >/dev/null || true
	rm -f /var/state/openoffice/ooo_is_prelinked
	rmdir /var/state/openoffice 2>&1 >/dev/null || true
fi

#DEBHELPER#

exit 0
