Added other utility scripts
[mirror-monitor.git] / bin / sync-cvsd
diff --git a/bin/sync-cvsd b/bin/sync-cvsd
new file mode 100755 (executable)
index 0000000..af999b5
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+CVSROOT=/home/cvs
+CVSDROOT=/home/cvsd/repo
+VERBOSE= #-v
+#
+MODULES="exim/exim-doc exim/exim-src exim/exim-test exim/exim-www"
+#
+for mod in $MODULES
+do
+       rsync -ra $VERBOSE $CVSROOT/$mod/ $CVSDROOT/$mod/
+done