#!/bin/sh set -eu mirror_root="$1" debmirror \ --no-check-gpg \ --host=ftp.fi.debian.org \ --method=http \ --rsync-extra=trace \ --arch=amd64 \ --getcontents \ --dist=bullseye \ -v \ "$mirror_root" echo "Finished mirroring Debian"