#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	if ! getent passwd pyres | grep -q pyres; then
		useradd --system --user-group --home /var/lib/python-pyres pyres
	fi
fi

#DEBHELPER#

exit 0
