summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2007-08-08 01:19:23 +0200
committermaximilian attems <maks@debian.org>2007-08-08 01:19:23 +0200
commit0b7e1a0bf6a45479301c5364c9888a4c6745227d (patch)
tree01bdb7857b4ecd4a6b987b2bb4dcf73bfa96fecf
parentccb150b16473ce974a0fbbb236c0dd95a022ec43 (diff)
downloadinitramfs-tools-0b7e1a0bf6a45479301c5364c9888a4c6745227d.tar.gz
initramfs-tools-0b7e1a0bf6a45479301c5364c9888a4c6745227d.zip
debian/scripts: Add /etc/crypttab to reportbug script
a big share of bugreports concern encrypted usage, that output is useful for /etc/fstab parsing.
-rw-r--r--debian/changelog3
-rwxr-xr-xdebian/script6
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index f0da4a9..e54a808 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,11 +8,12 @@ initramfs-tools (0.90~beta1) UNRELEASED; urgency=low
maybe_break().
* hook-functions: dep_add_modules() fix for md, lv, luks root.
(closes: #426917, #429237, #426446)
+ * debian/scripts: Add /etc/crypttab to reportbug script.
[ David Härdeman ]
* hook-functions: Protect all variable with local, plus coding style fixes.
- -- maximilian attems <maks@debian.org> Wed, 08 Aug 2007 00:50:22 +0200
+ -- maximilian attems <maks@debian.org> Wed, 08 Aug 2007 01:17:29 +0200
initramfs-tools (0.89) unstable; urgency=low
diff --git a/debian/script b/debian/script
index 5990db3..129513b 100755
--- a/debian/script
+++ b/debian/script
@@ -25,3 +25,9 @@ if [ -r /etc/initramfs-tools/initramfs.conf ]; then
sed 's/#.*$//;/^[[:space:]]*$/d' /etc/initramfs-tools/initramfs.conf
echo
fi
+
+if [ -r /etc/crypttab ]; then
+ echo "-- /etc/crypttab"
+ cat /etc/crypttab
+ echo
+fi