#!/bin/sh

if [ -f /sbin/lilo ]; then

if [ -e /etc/lilo.conf ]; then
    # Do not abort kernel removal in case of error
    lilo </dev/null >&2 || true
fi

fi
