~ubuntu-branches/ubuntu/trusty/debian-installer-utils/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
protocol_fetch() {
	mountmedia || true

	local FILE="${1#file://*}"
	if [ ! -e "$FILE" ]; then
		return 4
	elif ! cp "$FILE" $2; then
		return 1
	else
		return 0
	fi
}