On 06.01.2016 11:36, Debian Bug Tracking System wrote: > This is an automatic notification regarding your Bug report > which was filed against the zipl-installer package: > > #806341: zipl-installer: Using standard device names can result in a > non-bootable system > > It has been closed by Philipp Kern <[email protected]>. > > Their explanation is attached below along with your original report. > If this explanation is unsatisfactory and you have not received a > better one in a separate message then please contact Philipp Kern > <[email protected]> by > replying to this email. > > Unfortunately, there was a syntax error in the script, as Hendrik found out. The following patch fixes it. Sorry for the extra loop.
commit f3fb779f532d8d092c10e1e7b6d99a0b4d818549 Author: Hendrik Brueckner <[email protected]> Date: Thu Jan 14 12:21:47 2016 +0100 postinst: correct if syntax Signed-off-by: Hendrik Brueckner <[email protected]> diff --git a/debian/zipl-installer.postinst b/debian/zipl-installer.postinst index 4e4d1ee..8fa251b 100755 --- a/debian/zipl-installer.postinst +++ b/debian/zipl-installer.postinst @@ -23,6 +23,7 @@ if rootlvm="$(lvm lvdisplay -C -ovg_name,lv_name --noheadings ${rootfs})" then info "Root filesystem is on LV (${rootlvm})" elif rootuuid="$(block-attr --uuid ${rootfs})" +then info "Root filesystem UUID is ${rootuuid}" PARAMETER="root=UUID=${rootuuid}" fi -- Mit freundlichen Grüßen/Kind Regards Viktor Mihajlovski IBM Deutschland Research & Development GmbH Vorsitzender des Aufsichtsrats: Martina Köderitz Geschäftsführung: Dirk Wittkopp Sitz der Gesellschaft: Böblingen Registergericht: Amtsgericht Stuttgart, HRB 243294

