#!/bin/sh

set -e

#DEBHELPER#

if [ "$1" = "purge" ] ; then
        # Remove generated config and log files.
	rm -f /etc/owncloud/config.php
	rm -f /var/log/owncloud.log*
fi

exit 0
