archboot/usr/bin/archboot-mktorrent.sh
Tobias Powalowski f2e821448a add shellcheck
2022-01-26 11:39:31 +01:00

31 lines
875 B
Bash
Executable file

#!/usr/bin/env bash
# install mktorrent from http://mktorrent.sourceforge.net/
# check result on e.g. http://torrenteditor.com/
if [[ "${1}" = "" || "${2}" = "" ]]; then
echo "Usage: ${0} <version> <iso file>"
echo -e "\tversion:\te.g. 2009.05 or archboot/2009.05"
echo -e "\tiso file:\te.g. ./archlinux-2009.05-core-x86_64.iso"
exit 1
fi
archver="${1}"
isofile="${2}"
echo 'Creating webseeds...'
#shellcheck disable=SC2016
httpmirrorlist=$(wget http://www.archlinux.org/mirrorlist/all/http/ -q -O - \
- | grep 'http://' \
| awk "{print \$3\"/iso/${archver}/\";}" \
| sed -e 's#/$repo/os/$arch##' \
-e 's#\s*# -w #')
echo 'Building torrent...'
mktorrent \
-l 19 \
-a 'http://tracker.archlinux.org:6969/announce' \
-a 'http://linuxtracker.org:2710/announce' \
-c "Arch Linux ${archver} (www.archlinux.org)" \
"${httpmirrorlist}" \
"${isofile}"