molecules/scripts/make_torrents.sh

29 lines
841 B
Bash
Executable File

#!/bin/sh
/usr/sbin/env-update
. /etc/profile
# Path to molecules.git dir
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
export SABAYON_MOLECULE_HOME
announce_url="http://tracker.sabayon.org/tracker.php/announce"
iso_dir="${SABAYON_MOLECULE_HOME}/iso"
cd "${iso_dir}"
for iso_file in "${iso_dir}"/*.{iso,tar.gz,tar.xz}; do
iso_name="${iso_file/.iso}"
iso_name="${iso_name/.tar.gz}"
iso_name="${iso_name/.tar.xz}"
# do not make torrents for DAILY iso images
is_daily=$(echo ${iso_name} | grep DAILY)
if [ -n "${is_daily}" ]; then
continue
fi
torrent_file="${iso_file}.torrent"
[[ -f "${torrent_file}" ]] && rm "${torrent_file}"
iso_file_name="$(basename ${iso_file})"
echo "Cooking ${iso_file_name}"
mktorrent-borg -nd -a "${announce_url}" -n "${iso_name}" -o "${torrent_file}" "${iso_file_name}" || exit 1
done