summaryrefslogtreecommitdiff
path: root/doc/bugs/Lost_S3_Remote.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/Lost_S3_Remote.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/Lost_S3_Remote.mdwn')
-rw-r--r--doc/bugs/Lost_S3_Remote.mdwn59
1 files changed, 0 insertions, 59 deletions
diff --git a/doc/bugs/Lost_S3_Remote.mdwn b/doc/bugs/Lost_S3_Remote.mdwn
deleted file mode 100644
index c359b5210..000000000
--- a/doc/bugs/Lost_S3_Remote.mdwn
+++ /dev/null
@@ -1,59 +0,0 @@
-Somehow I've lost my S3 remote... git-annex knows it's there, but its not associating it with the git remote in .git/config
-
- $ git-annex whereis pebuilder.iso
- whereis pebuilder.iso (3 copies)
- 3b6fc6f6-3025-11e1-b496-33bffbc0f3ed -- housebackup (external seagate drive on /mnt/back/RemoteStore)
- 6b1326d8-2abb-11e1-8f43-979159a7f900 -- synology
- 9b297772-2ab2-11e1-a86f-2fd669cb2417 -- Amazon S3
- ok
-
-Amazon S3 is the description from the remote. My .git/config file contains this block:
-
- [remote "cloud"]
- annex-s3 = true
- annex-uuid = 9b297772-2ab2-11e1-a86f-2fd669cb2417
- annex-cost = 70
-
-The UUID matches... But I cannot access it... see below:
-
- [39532:39531 - 0:626] 08:20:38 [vivitron@tronlap:o +3] ~/annex/ISO
- $ git-annex get pebuilder.iso --from=cloud
- git-annex: there is no git remote named "cloud"
-
- [39532:39531 - 0:627] 08:20:56 [vivitron@tronlap:o +3] ~/annex/ISO
- $ git-annex get pebuilder.iso --from="Amazon S3"
- git-annex: there is no git remote named "Amazon S3"
-
- [39532:39531 - 0:628] 08:21:01 [vivitron@tronlap:o +3] ~/annex/ISO
- $ git-annex get pebuilder.iso --from=9b297772-2ab2-11e1-a86f-2fd669cb2417
- git-annex: there is no git remote named "9b297772-2ab2-11e1-a86f-2fd669cb2417"
-
- [39532:39531 - 0:629] 08:21:08 [vivitron@tronlap:o +3] ~/annex/ISO
- $
-
-git remote lists "cloud" as a remote:
-
- $ git remote
- all
- cloud
- cs
- es3
- origin
-
-git-annex status lists S3 support:
-
- $ git-annex status
- supported backends: SHA256 SHA1 SHA512 SHA224 SHA384 SHA256E SHA1E SHA512E SHA224E SHA384E WORM URL
- supported remote types: git S3 bup directory rsync web hook
-
-
-
-I appreciate any help.... I've tested versions 3.20111211, 3.20111231, and 3.20120105
-
- $ git --version
- git version 1.7.8.1
-
-
-
-> [[done]]; I've fixed the build system so this confusing thing cannot
-> happen anymore. --[[Joey]]