summaryrefslogtreecommitdiff
path: root/sync-free
diff options
context:
space:
mode:
Diffstat (limited to 'sync-free')
-rwxr-xr-xsync-free11
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 $?