File: tftp

package info (click to toggle)
debian-installer-utils 1.155
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: sh: 1,001; ansic: 160; makefile: 62
file content (14 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
protocol_fetch() {
    local url file RETVAL i server remote_file
    url="$1"
    file="$2"
    server="$(echo $url | cut -d/ -f 3)"
    remote_file="/$(echo $url | cut -d/ -f 4-)"
    RETVAL=0
    for i in 1 2; do
        tftp -g -l "$file" -r "$remote_file" "$server" || RETVAL=$?
        [ $RETVAL = 1 ] || return $RETVAL
        [ "$TRY_REPEAT" ] || break
    done
    return $RETVAL
}