File: kernelmodules_ext3

package info (click to toggle)
partman-ext3 62
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 728 kB
  • ctags: 5
  • sloc: sh: 499; makefile: 2
file content (33 lines) | stat: -rwxr-xr-x 662 bytes parent folder | download | duplicates (6)
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

mkdir -p /var/lib/partman

cat /proc/modules |
while read module_name x; do
	if [ "$module_name" = ext3 ]; then
		>/var/lib/partman/ext3
	fi
	if [ "$module_name" = ext4 ]; then
		>/var/lib/partman/ext4
	fi
done

if ! [ -f /var/lib/partman/ext3 ] && \
   modprobe ext3 >/dev/null 2>/dev/null; then
	>/var/lib/partman/ext3
fi

if ! [ -f /var/lib/partman/ext4 ] && \
   modprobe ext4 >/dev/null 2>/dev/null; then
	>/var/lib/partman/ext4
fi

if ! [ -f /var/lib/partman/ext3 ] && \
   grep -q ext3 /proc/filesystems; then
	>/var/lib/partman/ext3
fi

if ! [ -f /var/lib/partman/ext4 ] && \
   grep -q ext4 /proc/filesystems; then
	>/var/lib/partman/ext4
fi