DEBSOURCES
Skip Quicknav
sources / debian-installer-utils / 1.92%2Bdeb7u1 / fetch-url-methods / file
12345678910
protocol_fetch() { local FILE="${1#file://*}" if [ ! -e "$FILE" ]; then return 4 elif ! cp "$FILE" $2; then return 1 else return 0 fi }