diff options
-rwxr-xr-x | bin/get-packages-from-mirror | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/get-packages-from-mirror b/bin/get-packages-from-mirror new file mode 100755 index 0000000..391b09b --- /dev/null +++ b/bin/get-packages-from-mirror @@ -0,0 +1,15 @@ +#!/bin/sh + +# get packages from a list on the master mirror (in +# case they are dangling after a db-update + +# shellcheck disable=SC2119,SC2120 + +# shellcheck source=../lib/load-configuration +. "${0%/*}/../lib/load-configuration" + +filelist=$1 + +sed 's/\(.*\)/get pool\/\1/' "$filelist" | + failsafe_sftp + |