1
0
mirror of https://github.com/pimox/pimox7.git synced 2025-06-08 08:47:23 +00:00
pimox7/sync
2021-08-14 00:09:41 +00:00

20 lines
814 B
Bash
Executable File

#! /bin/sh
DIST=dev/main
R=/root/build
LIST="ceph corosync-pve criu extjs ifupdown2 libpve-u2f-server-perl libqb librados2-perl lxc novnc-pve proxmox-archive-keyring proxmox-backup proxmox-i18n proxmox-mini-journalreader proxmox-ve proxmox-widget-toolkit pve-access-control pve-apiclient pve-client pve-cluster pve-common pve-container pve-docs pve-edk2-firmware pve-firewall pve-guest-common pve-ha-manager pve-http-server pve-lxc-syscalld pve-manager pve-qemu pve-rs pve-storage pve-xtermjs pve-server qemu-server spiceterm vncterm prebuilt"
for i in ${LIST}
do
for f in ${R}/${i}/*.deb
do
b=$(basename ${f})
case ${b} in
*dbgsym*|*_amd64.deb|*dbg_*) ;;
*_arm64.deb) rsync -ptog ${f} ${DIST}/binary-arm64/${b} ;;
*_all.deb) rsync -ptog ${f} ${DIST}/binary-all/${b} ;;
*) ;;
esac
done
done