#628699#5
Date:
2011-05-31 13:34:15 UTC
From:
To:
when I use s3put, having set the environment variables with the Amazon credentials,
the commandline hangs and does not report back till I interrupt it with a ctrl+C
....tcpdump does not give any open connection towards Amazon S3
on the other hand, other executables like s3ls, works like a charm

#628699#10
Date:
2011-05-31 17:15:32 UTC
From:
To:
Severity 628699 normal
Retitle 628699 wrong inline help for s3put
Thanks

I looked at the source code and it was hanging on the STDIN reading
Basically the tool has to be used as netcat... piping the content
towards the tool and just defining the key on the amazon bucket

RIGHT:
	./s3put profitbricks-backup/CREDITS < CREDITS

And NOT as u probably tried like me... as a cp command

WRONG:
 	./s3put profitbricks-backup/CREDITS CREDITS

regards,