[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: slib
From: |
Ralf Wildenhues |
Subject: |
Re: slib |
Date: |
Wed, 12 Nov 2008 21:02:21 +0100 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
Hi Karl, and sorry for the huge delay.
* Karl Berry wrote on Tue, May 27, 2008 at 08:29:42PM CEST:
> Aubrey is able to upload to savannah.nongnu using the direct commands
> (rsync/scp/sftp), but not using gnupload. It surprises me. Quoting
> parts of the previous messages, he ran gnupload this way and failed:
>
> bash-3.2$ gnupload --to address@hidden:releases/freesnell/
> /home/jaffer/pub/FreeSnell.zip
> Signing /home/jaffer/pub/FreeSnell.zip...
> Uploading /home/jaffer/pub/FreeSnell.zip to
> address@hidden:releases/freesnell/...
> You tried to execute: scp -d -t releases/freesnell/
> Sorry, you are not allowed to execute that command.
> lost connection
>
> But ran scp directly this way, and succeeded:
>
> bash-3.2$ scp FreeSnell.zip FreeSnell.zip.sig
> dl.sv.nongnu.org:/releases/freesnell/
> FreeSnell.zip 100% 585KB 292.4KB/s 00:02
> FreeSnell.zip.sig 100% 189 0.2KB/s 00:00
AIUI then removing the special-casing for nongnu.org should just fix
things, no? Could you try the patch below for me?
Thanks!
Ralf
2008-11-12 Ralf Wildenhues <address@hidden>
Fix uploading to savannah.nongnu.org.
* lib/gnupload: Remove special case, to upload using scp.
Report by Karl Berry.
diff --git a/lib/gnupload b/lib/gnupload
index 12c9394..faeaceb 100755
--- a/lib/gnupload
+++ b/lib/gnupload
@@ -1,7 +1,7 @@
#!/bin/sh
# Sign files and upload them.
-scriptversion=2008-11-12.21
+scriptversion=2008-11-12.22
# Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation
#
@@ -197,10 +197,6 @@ EOF
$delete \
|| ncftpput savannah.gnu.org /incoming/savannah/$destdir $files
;;
- savannah.nongnu.org:*)
- $delete \
- || ncftpput savannah.nongnu.org /incoming/savannah/$destdir $files
- ;;
*)
$delete \
|| scp $files $dest
- Re: slib,
Ralf Wildenhues <=