File: hfsplus

package info (click to toggle)
partman-hfs 18
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 744 kB
  • sloc: sh: 480; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 288 bytes parent folder | download
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/hfsplus ] || exit 0

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

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