diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/changelog isc-dhcp-4.2.2.dfsg.1/debian/changelog
--- isc-dhcp-4.2.2.dfsg.1/debian/changelog	2012-10-14 22:04:44.000000000 +0000
+++ isc-dhcp-4.2.2.dfsg.1/debian/changelog	2012-12-25 15:01:09.000000000 +0000
@@ -1,3 +1,11 @@
+isc-dhcp (4.2.2.dfsg.1-5+deb70u3) testing-proposed-updates; urgency=medium
+
+  * Run exit hooks when "dhclient -1" fails (closes: #486520).
+  * Add dhcp6.name-servers and dhcp6.domain-search to the default request
+    options in dhclient.conf (closes: #693315).
+
+ -- Michael Gilbert <mgilbert@debian.org>  Tue, 25 Dec 2012 11:44:18 +0000
+
 isc-dhcp (4.2.2.dfsg.1-5+deb70u2) testing-proposed-updates; urgency=high
 
   * Non-maintainer upload by the Security Team.
diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/dhclient.conf isc-dhcp-4.2.2.dfsg.1/debian/dhclient.conf
--- isc-dhcp-4.2.2.dfsg.1/debian/dhclient.conf	2012-09-14 03:24:53.000000000 +0000
+++ isc-dhcp-4.2.2.dfsg.1/debian/dhclient.conf	2012-12-25 14:59:55.000000000 +0000
@@ -21,6 +21,7 @@
 #prepend domain-name-servers 127.0.0.1;
 request subnet-mask, broadcast-address, time-offset, routers,
 	domain-name, domain-name-servers, domain-search, host-name,
+	dhcp6.name-servers, dhcp6.domain-search,
 	netbios-name-servers, netbios-scope, interface-mtu,
 	rfc3442-classless-static-routes, ntp-servers;
 #require subnet-mask, domain-name-servers;
diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/patches/dhclient-exit-hook.patch isc-dhcp-4.2.2.dfsg.1/debian/patches/dhclient-exit-hook.patch
--- isc-dhcp-4.2.2.dfsg.1/debian/patches/dhclient-exit-hook.patch	1970-01-01 00:00:00.000000000 +0000
+++ isc-dhcp-4.2.2.dfsg.1/debian/patches/dhclient-exit-hook.patch	2012-12-25 15:00:49.000000000 +0000
@@ -0,0 +1,16 @@
+Description: Run exit hooks when "dhclient -1" fails (closes: #486520).
+Author: Martin Pitt <martin.pitt@ubuntu.com>
+Bug-Debian: http://bugs.debian.org/486520
+Index: isc-dhcp-4.2.2.dfsg.1/client/dhclient.c
+===================================================================
+--- isc-dhcp-4.2.2.dfsg.1.orig/client/dhclient.c	2012-12-25 15:00:44.030394263 +0000
++++ isc-dhcp-4.2.2.dfsg.1/client/dhclient.c	2012-12-25 15:00:44.198394269 +0000
+@@ -2015,6 +2015,8 @@
+ 		if (!quiet)
+ 			log_info ("Unable to obtain a lease on first try.%s",
+ 				  "  Exiting.");
++		script_init (client, "FAIL", (struct string_list *)0);
++		script_go (client);
+ 		exit (2);
+ 	}
+ 
diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/patches/series isc-dhcp-4.2.2.dfsg.1/debian/patches/series
--- isc-dhcp-4.2.2.dfsg.1/debian/patches/series	2012-09-17 21:48:31.000000000 +0000
+++ isc-dhcp-4.2.2.dfsg.1/debian/patches/series	2012-12-25 15:00:42.000000000 +0000
@@ -8,3 +8,4 @@
 cve-2012-3571.patch
 cve-2012-3954.patch
 cve-2012-3955.patch
+dhclient-exit-hook.patch
