File: do_option

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 (12 lines) | stat: -rwxr-xr-x 149 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

. /lib/partman/lib/base.sh

dev=$2
id=$3

if ask_user /lib/partman/choose_method "$dev" "$id"; then
	update_partition $dev $id
fi

exit 0