Package: insserv Version: 1.14.0-5.2 Followup-For: Bug #811441 Hi,
I have uploaded an NMU including the earlier patch to DELAYED/10. Please find a debdiff attached. -- System Information: Debian Release: stretch/sid APT prefers unstable-debug APT policy: (500, 'unstable-debug'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.3.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages insserv depends on: ii libc6 2.21-9 insserv recommends no packages. Versions of packages insserv suggests: pn bootchart2 <none> -- no debconf information
diff -Nru insserv-1.14.0/debian/changelog insserv-1.14.0/debian/changelog --- insserv-1.14.0/debian/changelog 2016-01-27 14:45:31.000000000 -0300 +++ insserv-1.14.0/debian/changelog 2016-02-22 21:22:09.000000000 -0300 @@ -1,3 +1,11 @@ +insserv (1.14.0-5.3) unstable; urgency=medium + + * Non-maintainer upload. + * Do not suppress warnings on force mode + (Closes: #811441) + + -- Felipe Sateler <fsate...@debian.org> Mon, 22 Feb 2016 21:22:07 -0300 + insserv (1.14.0-5.2) unstable; urgency=medium * Non-maintainer upload. diff -Nru insserv-1.14.0/debian/patches/series insserv-1.14.0/debian/patches/series --- insserv-1.14.0/debian/patches/series 2016-01-26 20:50:19.000000000 -0300 +++ insserv-1.14.0/debian/patches/series 2016-02-22 20:58:34.000000000 -0300 @@ -12,3 +12,4 @@ 160_manual_page_update.patch 170_undeclared_extension.patch 180_MAXSYMLINKS.patch +warn_in_ignore_mode.patch diff -Nru insserv-1.14.0/debian/patches/warn_in_ignore_mode.patch insserv-1.14.0/debian/patches/warn_in_ignore_mode.patch --- insserv-1.14.0/debian/patches/warn_in_ignore_mode.patch 1969-12-31 21:00:00.000000000 -0300 +++ insserv-1.14.0/debian/patches/warn_in_ignore_mode.patch 2016-02-22 21:04:31.000000000 -0300 @@ -0,0 +1,16 @@ +Description: warn about dependencies in ignore mode +Author: Felipe Sateler <fsate...@debian.org> +Bug-Debian: https://bugs.debian.org/811441 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/insserv.c ++++ b/insserv.c +@@ -3074,7 +3074,7 @@ int main (int argc, char *argv[]) + * Use information from symbolic link structure to + * check if all services are around for this script. + */ +- if (isarg && !ignore) { ++ if (isarg) { + boolean ok = true; + if (del) + ok = chkdependencies(service);