diff -Nru resolvconf-1.69ubuntu1.2/debian/changelog resolvconf-1.69ubuntu1.3/debian/changelog --- resolvconf-1.69ubuntu1.2/debian/changelog 2017-11-07 20:14:20.000000000 +0000 +++ resolvconf-1.69ubuntu1.3/debian/changelog 2017-11-08 20:47:00.000000000 +0000 @@ -1,3 +1,10 @@ +resolvconf (1.69ubuntu1.3) trusty-proposed; urgency=medium + + * Fix bad shell syntax in newly added + /lib/resolvconf/net-interface-handler (LP: #1711760) + + -- Scott Moser Wed, 08 Nov 2017 15:47:00 -0500 + resolvconf (1.69ubuntu1.2) trusty-proposed; urgency=medium * support reading dns information written by initramfs. (LP: #1711760) diff -Nru resolvconf-1.69ubuntu1.2/lib/net-interface-handler resolvconf-1.69ubuntu1.3/lib/net-interface-handler --- resolvconf-1.69ubuntu1.2/lib/net-interface-handler 2017-11-07 20:14:20.000000000 +0000 +++ resolvconf-1.69ubuntu1.3/lib/net-interface-handler 2017-11-08 20:47:00.000000000 +0000 @@ -37,7 +37,8 @@ # where a shared cmdline with the host. local out="" ric="running-in-container" if command -v $ric && out=$($ric 2>&1); then - debug "inside a container, ignoring cmdline."; return 1;; + debug "inside a container ($out), ignoring cmdline."; + return 1; fi return 0