diff -Nru debhelper-10.7.2ubuntu2/debian/changelog debhelper-10.7.2ubuntu3/debian/changelog --- debhelper-10.7.2ubuntu2/debian/changelog 2017-08-06 08:13:33.000000000 -0700 +++ debhelper-10.7.2ubuntu3/debian/changelog 2018-05-30 01:50:45.000000000 -0700 @@ -1,3 +1,16 @@ +debhelper (10.7.2ubuntu3) artful; urgency=medium + + * [d24b1734] Support overrides in tmpfiles.d (LP: #1748147) + - dh_installinit: Use the basename of the "tmpfiles" config + files. This makes "systemd-tmpfiles --create" search for it + in both /usr/lib/tmpfiles.d and in /etc/tmpfiles.d. With + this change the system administrator can now override the + "tmpfiles" config shipped by the package in + /usr/libtmpfiles.d. + - no dh_installsystemd in this version. + + -- Seyeong Kim Thu, 24 May 2018 22:00:32 -0700 + debhelper (10.7.2ubuntu2) artful; urgency=high * Define U_PARAMS correctly in dh_builddeb, and don't try to use it when it diff -Nru debhelper-10.7.2ubuntu2/dh_installinit debhelper-10.7.2ubuntu3/dh_installinit --- debhelper-10.7.2ubuntu2/dh_installinit 2017-08-01 07:11:19.000000000 -0700 +++ debhelper-10.7.2ubuntu3/dh_installinit 2018-05-24 22:00:22.000000000 -0700 @@ -290,7 +290,7 @@ $name =~ s/^\Q$tmp\E//g; if ($name =~ m,^/usr/lib/tmpfiles\.d/, || $name =~ m,^/etc/tmpfiles\.d/,) { - push @tmpfiles, $name; + push(@tmpfiles, basename($name)); } }, no_chdir => 1,