#!/bin/sh
if [ -f /etc/lilo/config ]; then
	(cd /etc/lilo; ./lilo -C config)
else
	echo "error: lilo config file not found"
fi

