index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-01-26 09:30:06 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-01-26 09:30:06 +0100 |
commit | 7d3e29f153f78476898186e5530823809dccf314 (patch) | |
tree | a7285ca7028606f48ad27322afc1d6742e339ff3 | |
parent | a96b783f9cb75e233ebe71b44b41ee09b189c56f (diff) |
-rwxr-xr-x | bin/put-packages-onto-mirror | 15 |
diff --git a/bin/put-packages-onto-mirror b/bin/put-packages-onto-mirror new file mode 100755 index 0000000..585a740 --- /dev/null +++ b/bin/put-packages-onto-mirror @@ -0,0 +1,15 @@ +#!/bin/sh + +# put local package files from a list onto 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/\(.*\)/put \1 pool\/\1/' "$filelist" | + failsafe_sftp + |