File: ext4

package info (click to toggle)
partman-ext3 107
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 872 kB
  • sloc: sh: 555; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

dev=$1
id=$2
property=$3

[ -f /var/lib/partman/ext4 ] || exit 0

case $property in
    formatable)
	echo ext4
	;;
    existing)
	[ -f $id/detected_filesystem ] || exit 0
	fs=$(cat $id/detected_filesystem)

	case "$fs" in
	    ext4)
		echo ext4
		;;
	esac
	;;
esac