Erroring out in case a "wrong" filesystem was chosen.
authorTails developers <amnesia@boum.org>
Thu, 8 Sep 2011 13:48:16 +0000 (15:48 +0200)
committerTails developers <amnesia@boum.org>
Thu, 8 Sep 2011 13:52:46 +0000 (15:52 +0200)
If live-boot finds a "wrong" filesystem that looks OK, then the error message
can be pretty confusing. Panic with an explicit message in this case.

The "is this rootfs valid" test is implemented by checking if the
/usr/share/doc/live-boot/ directory exists: as per Debian Policy 2.3 (Copyright
considerations), this directory must exist on any system where the live-boot
binary package is installed.

Adapted and reformatted from a patch by Christian Hofstaedtler <ch@grml.org>.

scripts/live-bottom/10validateroot [new file with mode: 0755]

diff --git a/scripts/live-bottom/10validateroot b/scripts/live-bottom/10validateroot
new file mode 100755 (executable)
index 0000000..23eb900
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+# Error out in case a "wrong" file system was chosen.
+
+#set -e
+
+# initramfs-tools header
+
+PREREQ=""
+prereqs()
+{
+       echo "${PREREQ}"
+}
+
+case "${1}" in
+       prereqs)
+               prereqs
+               exit 0
+               ;;
+esac
+
+. /scripts/live-functions
+. /scripts/live-helpers
+
+if ! [ -d "/root/usr/share/doc/live-boot" ]
+then
+       panic "A wrong rootfs was mounted."
+fi