if [ ! -L "/etc/grub.conf" ]; then
  cp /etc/grub.conf /boot/grub 2>/dev/null || true
  cd /etc
  rm -f /etc/grub.conf 2>/dev/null || true
  ln -s /boot/grub/grub.conf /etc/grub.conf 2>/dev/null || true
fi
if [ ! -L "/boot/grub/menu.lst" ]; then
  rm -f /boot/grub/menu.lst 2>/dev/null || true
  cd /boot
  ln -s /boot/grub/grub.conf /boot/grub/menu.lst 2>/dev/null || true
fi
