#!/bin/sh
# postinst script for dmarc-srg

set -eu

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

	if ! dpkg-statoverride --list /etc/dmarc-srg >/dev/null; then
		chown www-data:www-data /etc/dmarc-srg
	fi
fi

#DEBHELPER#

exit 0
