File: ext3

package info (click to toggle)
partman-ext3 84
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 852 kB
  • sloc: sh: 551; makefile: 2
file content (20 lines) | stat: -rwxr-xr-x 217 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -- $1

fs=$1
mp=$2
type=$3
options=$4
dump=$5
pass=$6

case $type in
    ext3|ext4)
	mount -t $type ${options:+-o "$options"} $fs /target$mp || exit 1
	echo "umount /target$mp"
	exit 0
	;;
esac

exit 1