#!/bin/sh
#
# /etc/cron.weekly/cfg2html

[ -x /usr/bin/cfg2html-linux ] || exit 0

DIR=3D/var/lib/cfg2html

if ! [ -d $DIR ]
then
    mkdir -p $DIR
    chown root:root $DIR
    chmod 0755 $DIR
fi

/usr/bin/cfg2html-linux -o $DIR >/dev/null 2>&1

#



