summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2006-08-25 17:04:33 +0200
committermaximilian attems <maks@debian.org>2006-08-25 17:04:33 +0200
commit45989c9f37db0ef23e984ea559f2da784a028366 (patch)
tree7412695c5971e3bf874ee972e06032edb038de39 /debian
parentfabe918dee7da26d177d67d4aa8fe3fd6e83e513 (diff)
downloadinitramfs-tools-45989c9f37db0ef23e984ea559f2da784a028366.tar.gz
initramfs-tools-45989c9f37db0ef23e984ea559f2da784a028366.zip
- fix bashism
- rename mdadm.conf in mdrun.conf - retry nfsmount - harden init - fix lvm boot script prereqs
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog20
-rw-r--r--debian/initramfs-tools.postinst2
2 files changed, 21 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a5ac22f..bc635a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,23 @@
+initramfs-tools (0.77) unstable; urgency=medium
+
+ * mkinitramfs, scripts/local-top/mdrun: Use mdrun.conf as config file.
+ Ship mdrun unconditionally if around, should help in recovery situations.
+
+ * debian/initramfs-tools.postinst, hook-functions, mkinitramfs,
+ scripts/local, update-initramfs: Cleanup the "-a" and "-o" bashism.
+
+ * scripts/nfs: Retry to mount NFS on eventual failure. (closes: 377643)
+ Based on a patch by Vagrant Cascadian <vagrant+bugs@freegeek.org>.
+
+ * init: Make sure there is an /dev and /root. Usually passed by the kernel.
+ Also /dev/null or /dev/console might already be shipped.
+ Based on a patch by David Härdeman <david@2gen.com>. (closes: 340494)
+
+ * scripts/local-top/lvm: Fix prereqs s/mdraid/mdrun, thus urgency medium.
+ Thanks Rainer Gauweiler <debian@moppl.inka.de> for the notice.
+
+ -- maximilian attems <maks@sternwelten.at> Fri, 25 Aug 2006 16:55:56 +0200
+
initramfs-tools (0.76) unstable; urgency=medium
* debian/control: Tighten klibc to 1.4.19-2 for fixed nuke. (closes: 383730)
diff --git a/debian/initramfs-tools.postinst b/debian/initramfs-tools.postinst
index 5f46777..2f36f3f 100644
--- a/debian/initramfs-tools.postinst
+++ b/debian/initramfs-tools.postinst
@@ -7,7 +7,7 @@ if [ ! -e /etc/initramfs-tools/modules ]; then
fi
# Regenerate initramfs on upgrade
-if [ "$1" = "configure" -a -n "$2" ]; then
+if [ "$1" = "configure" ] && [ -n "$2" ]; then
update-initramfs -u
fi