summaryrefslogtreecommitdiff
path: root/repo/upload
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-10-01 20:55:21 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-10-01 20:55:21 -0400
commit28eaf064676361f2bae77f0925549f93f21d1e7e (patch)
tree2aa6d4f99b07024971abc586d146cda83a63a097 /repo/upload
parent770c4e4629ee2c16421916239ac3a1be6a9ad176 (diff)
downloadgpsd-28eaf064676361f2bae77f0925549f93f21d1e7e.tar.gz
Banish still more Berlios URLs.
Diffstat (limited to 'repo/upload')
-rwxr-xr-xrepo/upload12
1 files changed, 7 insertions, 5 deletions
diff --git a/repo/upload b/repo/upload
index 2271c374..b51d694c 100755
--- a/repo/upload
+++ b/repo/upload
@@ -3,15 +3,17 @@
# Upload git configuration from here to the repo
# Please do not introduce bashisms into this script.
#
-confdir=git.berlios.de:/gitroot/gpsd/
+# Note: This script does not curently work. It used to, on Berlios.
+# We leave it here because light modifications will probably work
+# on may forges.
-# Get around the ssh lockout on git.berlios.de by copying up to
-# shell.berlios.de and doing a local move. Written so the last
+# Get around the usual ssh lockout on a repo host by copying up to
+# the shell host and doing a local move. Written so the last
# move is atomic.
copy()
{
- scp $1 $LOGNAME@shell.berlios.de:STAGE
- ssh $LOGNAME@git.berlios.de "cp -f STAGE /gitroot/gpsd && mv /gitroot/gpsd/STAGE /gitroot/gpsd/$1"
+ scp $1 $LOGNAME@shell.xyzzy.foo:STAGE
+ ssh $LOGNAME@git.xyzzy.foo "cp -f STAGE /gitroot/gpsd && mv /gitroot/gpsd/STAGE /gitroot/gpsd/$1"
}
if [ $1 ]