File: choices

package info (click to toggle)
partman-target 59
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 936 kB
  • ctags: 9
  • sloc: sh: 406; makefile: 28
file content (34 lines) | stat: -rwxr-xr-x 641 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
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh

. /lib/partman/lib/base.sh

dev=$1
id=$2
cd $dev

if [ -f $id/method ]; then
	method=$(cat $id/method)
else
	method=dont_use
fi

if [ -f $id/filesystem ] && \
   ([ "$method" = keep ] || [ "$method" = format ]); then
	fs=$(cat $id/filesystem)
	db_metaget partman/filesystem_long/$fs description || RET=''
	if [ "$RET" ]; then
		description="$RET"
	else
		description="$fs"
	fi
else
	db_metaget partman/method_long/$method description || RET=''
	if [ "$RET" ]; then
		description="$RET"
	else
		description="$method"
	fi
fi

db_metaget partman-target/text/method description
printf "method\t%s\${!TAB}%s\n" "${RET}" "$description"