d/ostree-boot.postinst: Trigger an update of the initramfs
Otherwise the dracut initramfs won't be rebuilt to include ostree-boot.
This commit is contained in:
parent
0f5871104a
commit
784abb792c
|
|
@ -1,14 +1,16 @@
|
||||||
ostree (2019.3-2) UNRELEASED; urgency=medium
|
ostree (2019.3-2) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
[ Simon McVittie ]
|
|
||||||
* Switch packaging branch to debian/experimental
|
|
||||||
|
|
||||||
[ Felix Krull ]
|
[ Felix Krull ]
|
||||||
* Enable ostree-boot package (Closes: #824650)
|
* Enable ostree-boot package (Closes: #824650)
|
||||||
* ostree-boot: Weaken dracut Depends to Recommends.
|
* ostree-boot: Weaken dracut Depends to Recommends.
|
||||||
The systemd parts of the package could also be used for integration
|
The systemd parts of the package could also be used for integration
|
||||||
with e.g. initramfs-tools.
|
with e.g. initramfs-tools.
|
||||||
|
|
||||||
|
[ Simon McVittie ]
|
||||||
|
* Switch packaging branch to debian/experimental
|
||||||
|
* d/ostree-boot.postinst: Trigger an update of the initramfs.
|
||||||
|
Otherwise the dracut initramfs won't be rebuilt to include ostree-boot.
|
||||||
|
|
||||||
-- Simon McVittie <smcv@debian.org> Fri, 23 Aug 2019 09:03:04 +0100
|
-- Simon McVittie <smcv@debian.org> Fri, 23 Aug 2019 09:03:04 +0100
|
||||||
|
|
||||||
ostree (2019.3-1) unstable; urgency=medium
|
ostree (2019.3-1) unstable; urgency=medium
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
(configure)
|
||||||
|
dpkg-trigger --no-await update-initramfs
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
Loading…
Reference in New Issue