summaryrefslogtreecommitdiff
path: root/sync-free
blob: cce97d95427a75087b570eeee2aede5f75c7ed56 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Copy free/pool to repo/pool
for dir in community core extra testing pool; do
    rsync -va --exclude=*.db.tar.* --exclude=*.db --recursive --copy-links /home/parabolavnx/parabolagnulinux.org/free/$dir/ /home/parabolavnx/parabolagnulinux.org/repo/$dir/
done

for dir in libre libre-testing social sugar; do
    rsync -va --delete-after --recursive --copy-links /home/parabolavnx/parabolagnulinux.org/free/$dir/ /home/parabolavnx/parabolagnulinux.org/repo/$dir/
done

exit $?