#!/bin/sh

set -e

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