#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	if [ -d /etc/motioneye ]; then
		rm -rf /etc/motioneye
	fi
fi

#DEBHELPER#

exit 0
