#!/bin/sh
# postinst script for phpwebcounter

set -eu

if [ "$1" = "configure" ]; then

	if ! dpkg-statoverride --list /var/lib/phpwebcounter >/dev/null; then
		chown www-data:www-data /var/lib/phpwebcounter
	fi

fi

#DEBHELPER#

exit 0
