summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2013-05-28 19:01:36 +0200
committersyncer <root@plopp.spline.de>2013-05-28 19:02:31 +0200
commitab09b582e1e2fc9e552d49c68ba13b0f5ac4f03f (patch)
tree1384d959a991bdb6642a7c21a431718e7f00fe9b
parenta05f0bdca938b52b33da3e5f7279028039ef5c99 (diff)
downloadmirror-sync-ab09b582e1e2fc9e552d49c68ba13b0f5ac4f03f.tar.gz
mirror-sync-ab09b582e1e2fc9e552d49c68ba13b0f5ac4f03f.tar.bz2
mirror-sync-ab09b582e1e2fc9e552d49c68ba13b0f5ac4f03f.zip
openbsd-cvs: remove mirrorHEADmaster
-rwxr-xr-xbin/sync-openbsd-cvs-repo.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/bin/sync-openbsd-cvs-repo.sh b/bin/sync-openbsd-cvs-repo.sh
deleted file mode 100755
index 5a58289..0000000
--- a/bin/sync-openbsd-cvs-repo.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# update openbsd anoncvscvs mirror (scripted by stsp)
-
-#set -e
-
-#logger "`basename $0`: invoked `date`"
-
-CVS_ROOTDIR=/raid/anoncvs/OpenBSD/cvs
-
-(cd $CVS_ROOTDIR && \
- rsync -q -a --recursive --times --links --hard-links --delete \
- --exclude=CVSROOT/history \
- --exclude=CVSROOT/writers \
- --exclude=CVSROOT/readers \
- --exclude=CVSROOT/passwd \
- rsync://rsync.de.openbsd.org/OpenBSD-CVS . )
-
-# we are using our own readers, writers and passwd files.
-cp /dev/null $CVS_ROOTDIR/CVSROOT/writers
-echo "anoncvs" > $CVS_ROOTDIR/CVSROOT/readers
-echo "anoncvs:AHDysQkJIubEc" > $CVS_ROOTDIR/CVSROOT/passwd
-echo "" > $CVS_ROOTDIR/CVSROOT/config
-
-# One line in the modules file breaks checkouts,
-# due to debian bug #226888. Comment it out. --stsp
-sed -i -e 's/\(^www.*-i.*\)/#\1/' $CVS_ROOTDIR/CVSROOT/modules