summaryrefslogtreecommitdiff
path: root/initramfs-tools/scripts/live-bottom/10validateroot
blob: d4d16207c549130257fc36e8ce998761bc0541f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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/live-boot" ]
then
	panic "A wrong rootfs was mounted."
fi