#!/bin/sh

if [ -e /boot/vmlinuz ] && [ -e /boot/vmlinuz.old ]; then
	/sbin/install-lilo
fi

exit 0