mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
22 lines
692 B
Bash
22 lines
692 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
souce /etc/de-p1st-repo/arch-repo.cfg || exit
|
||
|
|
||
|
|
||
|
cd "${LOCAL_PKG_DIR}" || exit
|
||
|
|
||
|
# get list of new packages, one package per line
|
||
|
rsync --ignore-existing --out-format="%n" --dry-run \
|
||
|
./*.pkg.tar.{xz,zst} "${REMOTE_SSH_HOST}":"${REMOTE_PKG_DIR}" > new-pkg.txt || exit
|
||
|
|
||
|
# transfer new packages using rsync
|
||
|
rsync --ignore-existing --progress --human-readable \
|
||
|
./*.pkg.tar.{xz,zst} "${REMOTE_SSH_HOST}":"${REMOTE_PKG_DIR}" || exit
|
||
|
|
||
|
# transfer new-pkg.txt
|
||
|
rsync --ignore-times --checksum --progress --human-readable \
|
||
|
new-pkg.txt "${REMOTE_SSH_HOST}":"${REMOTE_PKG_DIR}" || exit
|
||
|
|
||
|
# add each new package to database
|
||
|
ssh "${REMOTE_SSH_HOST}" "/home/yoda/arch-repo-receive-new.sh"
|