#!/bin/sh
# postinst for rsync

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