Bug#804245: Please update initramfs in postinst

2015-11-06 Thread Steve McIntyre
Source: reiser4progs
Version: 1.1.0-1
Severity: important
Tags: d-i

Hi!

Since the move to systemd as the default init system, the initramfs
will attempt to fsck and mount both / and /usr (where applicable). To
aid this, initramfs-tools will copy necessary filesystem tools into
the initramfs when it is generated.

To make this work well, all filesystem tools packages for filesystems
that are likely to be used for / and/or /usr should call
"update-initramfs -u" in their postinst. This will

 (a) ensure that necesssary fsck tools are included in the initramfs
 generated by debian-installer (see #801961 for an example failure
 here); and
 (b) ensure that bug fixes to fsck tools get included immediately in
 the initramfs

I've checked your package and I don't see any update-initramfs
calls. Please add one, if you consider reiser4 to be a likely/sensible
option as a base (/ or /usr) filesystem. If you'd like help doing that
postinst work, I can supply a patch - just ask!


-- System Information:
Debian Release: 8.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#804245: Please update initramfs in postinst

2015-11-06 Thread Felix Zielcke
Please make a NMU. 
I won't be able to do an upload soon

Am 6. November 2015 15:03:51 MEZ, schrieb Steve McIntyre :
>Source: reiser4progs
>Version: 1.1.0-1
>Severity: important
>Tags: d-i
>
>Hi!
>
>Since the move to systemd as the default init system, the initramfs
>will attempt to fsck and mount both / and /usr (where applicable). To
>aid this, initramfs-tools will copy necessary filesystem tools into
>the initramfs when it is generated.
>
>To make this work well, all filesystem tools packages for filesystems
>that are likely to be used for / and/or /usr should call
>"update-initramfs -u" in their postinst. This will
>
> (a) ensure that necesssary fsck tools are included in the initramfs
> generated by debian-installer (see #801961 for an example failure
> here); and
> (b) ensure that bug fixes to fsck tools get included immediately in
> the initramfs
>
>I've checked your package and I don't see any update-initramfs
>calls. Please add one, if you consider reiser4 to be a likely/sensible
>option as a base (/ or /usr) filesystem. If you'd like help doing that
>postinst work, I can supply a patch - just ask!



Bug#804245: Please update initramfs in postinst

2015-11-06 Thread Steve McIntyre
On Fri, Nov 06, 2015 at 03:24:02PM +0100, Felix Zielcke wrote:
>Please make a NMU. 
>I won't be able to do an upload soon

Done, here's the debdiff.

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
"I suspect most samba developers are already technically insane... Of
 course, since many of them are Australians, you can't tell." -- Linus Torvalds
diff -Nru reiser4progs-1.1.0/debian/changelog 
reiser4progs-1.1.0/debian/changelog
--- reiser4progs-1.1.0/debian/changelog 2015-09-02 19:48:36.0 +
+++ reiser4progs-1.1.0/debian/changelog 2015-11-06 16:37:09.0 +
@@ -1,3 +1,11 @@
+reiser4progs (1.1.0-1.1) unstable; urgency=medium
+
+  * NMU
+  * Add a postinst to update the initramfs on install/upgrade.
+(Closes: #804245)
+
+ -- Steve McIntyre <93...@debian.org>  Fri, 06 Nov 2015 16:37:42 +
+
 reiser4progs (1.1.0-1) unstable; urgency=medium
 
   * New upstream release
diff -Nru reiser4progs-1.1.0/debian/reiser4progs.postinst 
reiser4progs-1.1.0/debian/reiser4progs.postinst
--- reiser4progs-1.1.0/debian/reiser4progs.postinst 1970-01-01 
00:00:00.0 +
+++ reiser4progs-1.1.0/debian/reiser4progs.postinst 2015-11-06 
16:37:42.0 +
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+   configure)
+   if [ -x /usr/sbin/update-initramfs ] && [ -e 
/etc/initramfs-tools/initramfs.conf ]
+   then
+   update-initramfs -u
+   fi
+   ;;
+
+   abort-upgrade|abort-remove|abort-deconfigure)
+
+   ;;
+
+   *)
+   echo "postinst called with unknown argument \`${1}'" >&2
+   exit 1
+   ;;
+esac
+
+#DEBHELPER#
+
+exit 0