File: ext2

package info (click to toggle)
partman-basicfilesystems 53
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,512 kB
  • ctags: 11
  • sloc: sh: 973; makefile: 38
file content (25 lines) | stat: -rwxr-xr-x 275 bytes parent folder | download | duplicates (2)
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
#!/bin/sh

dev=$1
id=$2
method=$3

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

case $method in
    formatable)
	echo ext2
	;;
    existing)
	[ -f $id/detected_filesystem ] || exit 0
	fs=$(cat $id/detected_filesystem)
	
	case "$fs" in
	    ext2)
		echo ext2
		;;
	esac
	;;
esac