#!/bin/sh

set -e

DIRS='/usr/lib/site-python/linda /usr/share/linda/checks'

if [ "$1" = remove -o "$1" = purge ]; then
	for i in $DIRS; do
        for j in pyc pyo; do
		rm -f $i/*.$j
		done
	done
fi

#DEBHELPER#

