File: select_mountoptions

package info (click to toggle)
partman-basicfilesystems 174
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,632 kB
  • sloc: sh: 1,171; makefile: 2
file content (52 lines) | stat: -rwxr-xr-x 1,195 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh

. /usr/share/debconf/confmodule

dev=$1
id=$2
part=$dev/$id
filesystem=$(cat $part/acting_filesystem)
os=$(udpkg --print-os)
tpl=partman-basicfilesystems/mountoptions

optionsfile=''
if [ -f /lib/partman/mountoptions/$filesystem.$os ] ; then
	optionsfile="/lib/partman/mountoptions/$filesystem.$os"
else
	optionsfile="/lib/partman/mountoptions/$filesystem"
fi

cd $dev

full_options=''
all_options=''
descriptions=''
for op in $(cat $optionsfile); do
	if ! db_metaget partman-basicfilesystems/text/$op description || \
	   ! [ "$RET" ]; then
		logger -t partman "Warning: no description for mount option $op found"
		# using option name as fallback description
		RET="$op"
	fi
	all_options="${all_options:+$all_options, }$op"
	descriptions="${descriptions:+$descriptions, }$RET"

	if [ -f $part/options/$op ]; then
		full_options="${full_options:+$full_options,}$(cat $part/options/$op)"
	fi
done

db_subst $tpl options "$all_options"
db_subst $tpl descriptions "$descriptions"
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