diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-16 10:59:13 -0700 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-16 10:59:13 -0700 |
commit | 01fb98f402fdd703491c9f52414de2815d893cef (patch) | |
tree | 6d394918db9dd9a05de89ed34ce89fed7da62419 /sync-free | |
parent | 748600bf8dfba34b336ad642a6b26dae674db85f (diff) |
Stable branch for repm
Diffstat (limited to 'sync-free')
-rwxr-xr-x | sync-free | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sync-free b/sync-free new file mode 100755 index 0000000..cce97d9 --- /dev/null +++ b/sync-free @@ -0,0 +1,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 $? |