#!/bin/sh

if [ -e /boot/grub/menu-bkubn.lst ]; then
mv /boot/grub/menu-bkubn.lst /boot/grub/menu.lst
fi

if [ -e /boot/ubnkern ]
then
rm /boot/ubnkern
fi
if [ -e /boot/ubninit ]
then
rm /boot/ubninit
fi

if [ -e /livecd.sqfs ]
then
rm /livecd.sqfs
fi

if [ -e /boot/livecd.sqfs ]
then
rm /boot/livecd.sqfs
fi

if [ -e /boot/grub/grub-bkubn.conf ]
then
mv /boot/grub/grub-bkubn.conf /boot/grub/grub.conf
fi
