#!/bin/sh -e
if [ -e /etc/vpnc/resolv.conf-backup ]; then
	cat /etc/vpnc/resolv.conf-backup >/etc/resolv.conf
fi
rm -f /etc/network/if-up.d/12_vpnc_resolv

# Remove the script for PR1.1 and later versions.
FILE_PR11=/etc/maemo-dhcp.d/60_vpnc
if [ -e $FILE_PR11 ]; then
	rm -f $FILE_PR11
fi

