#!/bin/sh

set -e

case "$1" in
    configure)
	adduser --system --quiet --no-create-home --disabled-login \
                --disabled-password --home /nonexistent --group dnsproxy || true
    ;;
esac

#DEBHELPER#

exit 0
