Package: debian-installer-utils

Version: 1.95

The TFTP fetch-url method script inserts a slash in front of the
remote file. This
breaks certain TFTP servers with 'access violation'. Since TFTP expects the
path to start at root, the slash is not necessary and can be removed.

so the line > remote_file="/$(echo $url | cut -d/ -f 4-)"

should be > remote_file="$(echo $url | cut -d/ -f 4-)"

Reply via email to