File: reiserfs

package info (click to toggle)
partman-reiserfs 44
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 576 kB
  • ctags: 4
  • sloc: sh: 330; makefile: 32
file content (25 lines) | stat: -rwxr-xr-x 294 bytes parent folder | download | duplicates (3)
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
property=$3

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

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

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