File: do_option

package info (click to toggle)
partman-target 96
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,144 kB
  • ctags: 13
  • sloc: sh: 489; makefile: 16
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