#! /bin/sh

if [ -e /usr/share/vultures ]; then
  rm -rf /usr/share/vultures
fi

if [ -e /opt/vultures ]; then
  rm -rf /opt/vultures
fi

if [ -x /usr/bin/gconftool ]; then
  gconftool --recursive-unset /apps/vultures
fi

if [ -x /usr/bin/update-desktop-database ]; then
  update-desktop-database /usr/share/applications
fi

if [ -x /usr/bin/gtk-update-icon-cache ]; then
  gtk-update-icon-cache -f /usr/share/icons/hicolor
fi

exit 0
