#!/bin/sh
set -e

if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/dftp -a -d /usr/share/doc/dftp ]; then
		ln -sf ../share/doc/dftp /usr/doc/dfpd
	fi
fi

exit 0
