File: do_option

package info (click to toggle)
partman-basicmethods 42
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 384 kB
  • ctags: 1
  • sloc: sh: 198; makefile: 26
file content (31 lines) | stat: -rwxr-xr-x 402 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
#!/bin/sh

. /lib/partman/lib/base.sh

dev=$2
id=$3

cd $dev

rm -f $id/method
rm -f $id/format
rm -f $id/use_filesystem

flags=''
open_dialog GET_FLAGS $id
while { read_line flag; [ "$flag" ]; }; do
	case $flag in
	    lvm|raid|swap)
		continue
		;;
	    *)
		flags="${flags:+$flags$NL}$flag"
		;;
	esac
done
close_dialog

open_dialog SET_FLAGS $id
write_line "$flags"
write_line NO_MORE
close_dialog