#!/bin/sh -e
# Password setup is done by the passwd package.
if [ "$1" = new ]; then
	exec dpkg-reconfigure --unseen-only --default-priority passwd
else
	exec dpkg-reconfigure --default-priority passwd
fi
