You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
382 B
10 lines
382 B
#!/bin/bash |
|
set -e |
|
cd aur |
|
cp -a /etc/pacman.conf /etc/pacman.d/mirrorlist ./ |
|
|
|
# sign everything |
|
gpg -v pacman.conf.sig 2>/dev/null || (rm -f pacman.conf.sig; gpg -u 'ECB9B8CBAAC68C03!' -b pacman.conf) |
|
gpg -v mirrorlist.sig 2>/dev/null || (rm -f mirrorlist.sig; gpg -u 'ECB9B8CBAAC68C03!' -b mirrorlist) |
|
|
|
rsync -av --stats --progress --delete ./ root@mytorrentflux:/pacman/aur/ "$@"
|
|
|