#! /bin/sh

# The clock might be wrong and we know that we need to update the icon
# cache so we just force it.

gtk-update-icon-cache -f /usr/share/icons/hicolor


# config-file migration

OLD_CONFIG="/home/user/.vpnc-gui/vpnc.conf"
NEW_CONFIG="/home/user/.vpnc-gui/Default.vpnc"
if [ -f $OLD_CONFIG ]; then
  echo "Migrating old config to new style ..."
  mv $OLD_CONFIG $NEW_CONFIG
fi
	

#DEBHELPER#

exit 0
