File: select_mountoptions

package info (click to toggle)
partman-basicfilesystems 53
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,512 kB
  • ctags: 11
  • sloc: sh: 973; makefile: 38
file content (33 lines) | stat: -rwxr-xr-x 610 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
#!/bin/sh

. /usr/share/debconf/confmodule

dev=$1
id=$2
tpl=$3
part=$dev/$id
filesystem=$(cat $part/acting_filesystem)

cd $dev

full_options=''
for op in $(cat /lib/partman/mountoptions/$filesystem); do
    if [ -f $part/options/$op ]; then
	if [ "$full_options" ]; then
	    full_options="$full_options,$(cat $part/options/$op)"
	else
	    full_options="$(cat $part/options/$op)"
	fi
    fi
done
db_set $tpl "$full_options"
db_input critical $tpl || true
db_go || exit
db_get $tpl
rm -rf $part/options
mkdir $part/options
IFS=,
for op in $RET; do
    op=${op# }
    echo "$op" >$part/options/${op%% *}
done