#!/bin/sh -e

PACKAGE="ftpwatch"

# Source debconf library.
. /usr/share/debconf/confmodule

db_input high ftpwatch/info || true
db_go


# FSSTND compatible symlinks
if [ "$1" = "configure" ]; then
		if [ -d /usr/doc -a ! -e /usr/doc/$PACKAGE \
				-a -d /usr/share/doc/$PACKAGE ]; then
						ln -sf ../share/doc/$PACKAGE /usr/doc/$PACKAGE
		fi
fi
				
