#!/bin/bash
#
# postinst of linux gazette base package

set -e

# adds the full index
if      [ -d /usr/doc/linux-gazette/.indexes ]
then    if      [ -x /usr/sbin/j_mkindex ]
        then    echo "Building the whole index"
                /usr/sbin/j_mkindex /usr/doc/linux-gazette
        fi
fi

