~ubuntu-branches/ubuntu/natty/partman-auto/natty

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh

. /lib/partman/lib/base.sh
. /lib/partman/lib/recipes.sh
. /lib/partman/lib/auto-shared.sh

dev=$1
free_space=$2
recipe=$3

# Let us be safe and update the directories
update_all

cd $dev
open_dialog PARTITION_INFO $free_space
read_line x1 x2 free_size free_type x3 x4 x5
close_dialog

free_size=$(convert_to_megabytes $free_size)

if [ "$free_type" = unusable ]; then
	db_input critical partman-auto/unusable_space || true
	db_go || true
	exit 1
fi

db_progress START 0 5 partman-auto/text/automatically_partition
db_progress INFO partman-auto/progress/info

decode_recipe $recipe default

db_progress STEP 1

expand_scheme

ensure_primary

db_progress STEP 1

create_primary_partitions

db_progress STEP 1

create_partitions

db_progress STEP 1

update_all

db_progress STOP

exit 0