=== modified file 'Makefile' --- Makefile 2018-08-19 14:06:55 +0000 +++ Makefile 2018-08-19 14:32:00 +0000 @@ -423,8 +423,6 @@ plugin-helpers/mandos-client-iprouteadddel install initramfs-tools-hook \ $(INITRAMFSTOOLS)/hooks/mandos - install --mode=u=rw,go=r initramfs-tools-hook-conf \ - $(INITRAMFSTOOLS)/conf-hooks.d/mandos install --mode=u=rw,go=r initramfs-tools-conf \ $(INITRAMFSTOOLS)/conf.d/mandos-conf install initramfs-tools-script \ === modified file 'debian/control' --- debian/control 2018-02-10 18:47:22 +0000 +++ debian/control 2018-08-19 14:32:00 +0000 @@ -42,7 +42,7 @@ Package: mandos-client Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, cryptsetup, - initramfs-tools, dpkg-dev (>=1.16.0) + initramfs-tools (>= 0.99), dpkg-dev (>=1.16.0) Recommends: ssh, gnutls-bin | openssl Breaks: dropbear (<= 0.53.1-1) Enhances: cryptsetup === modified file 'debian/mandos-client.dirs' --- debian/mandos-client.dirs 2018-08-19 14:06:55 +0000 +++ debian/mandos-client.dirs 2018-08-19 14:32:00 +0000 @@ -1,7 +1,6 @@ usr/share/man/man8 usr/sbin usr/share/initramfs-tools/hooks -usr/share/initramfs-tools/conf-hooks.d usr/share/initramfs-tools/conf.d usr/share/initramfs-tools/scripts/init-premount usr/share/initramfs-tools/scripts/local-premount === removed file 'initramfs-tools-hook-conf' --- initramfs-tools-hook-conf 2018-08-19 14:06:55 +0000 +++ initramfs-tools-hook-conf 1970-01-01 00:00:00 +0000 @@ -1,11 +0,0 @@ -# -*- shell-script -*- - -# if mkinitramfs is started by mkinitramfs-kpkg, mkinitramfs-kpkg has -# already touched the initrd file with umask 022 before we had a -# chance to affect it. We cannot allow a readable initrd file, -# therefore we must fix this now. -if [ -e "${outfile}" ] \ - && [ `stat --format=%s "${outfile}"` -eq 0 ]; then - rm "${outfile}" - (umask 027; touch "${outfile}") -fi