#!/bin/sh

set -e

if [ "$1" = "remove" ]
then
    ldconfig

    if [ -d /usr/share/doc/liblockfile1 ]
    then
        rm -fr /usr/share/doc/liblockfile1
    fi
fi
	
