#!/bin/sh

if [ -f /sbin/lilo ]; then

if [ -e /etc/lilo.conf ]; then
    lilo </dev/null >&2
else
    echo >&2 "Warning: Not updating LILO; /etc/lilo.conf not found"
fi

fi
