summaryrefslogtreecommitdiff
path: root/doc/bugs/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.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/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.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/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.mdwn')
-rw-r--r--doc/bugs/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.mdwn51
1 files changed, 0 insertions, 51 deletions
diff --git a/doc/bugs/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.mdwn b/doc/bugs/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.mdwn
deleted file mode 100644
index 8ee66da19..000000000
--- a/doc/bugs/directory_remote_+_shared_encryption_+_chunk_size___61___lost_files__63__.mdwn
+++ /dev/null
@@ -1,51 +0,0 @@
-### Please describe the problem.
-
-When I create a directory special remote, with encryption enabled (shared) and a chunk size restriction (any), I can copy files *to* the remote, but git annex can't find/access them afterwards.
-
-If I do the same, just without specifying chunk size, it works fine. Restricting chunk size on FAT filesystems to something less that 4GB is necessary (otherwise storing bigger files will just fail).
-
-### What steps will reproduce the problem?
-
-Assume `~/annex` is a normal git annex repository and it contains a file `data.file`.
-
- # cd ~/annex
- # mkdir /tmp/remote
- # git annex initremote dirremote type=directory directory=/tmp/remote encryption=shared chunksize="300 megabytes"
- initremote dirremote (encryption setup) (shared cipher) ok
- (Recording state in git...)
- # git annex copy --to dirremote data.file
- copy data.file (gpg) (to dirremote...)
- ok
- (Recording state in git...)
- # git annex fsck --from dirremote
- fsck data.file (gpg) (fixing location log)
- ** Based on the location log, data.file
- ** was expected to be present, but its content is missing.
- failed
- (Recording state in git...)
- git-annex: fsck: 1 failed
-
-The file is actually in the remote, e.g. `ls -R /tmp/remote` (shortened output):
-
- /tmp/remote/be5/af7/GPGHMACSHA1--cb23b50579bf69be9cdc0243b6fda1f66218eb43:
- GPGHMACSHA1--cb23b50579bf69be9cdc0243b6fda1f66218eb43
- GPGHMACSHA1--cb23b50579bf69be9cdc0243b6fda1f66218eb43.chunkcount
-
-### What version of git-annex are you using? On what operating system?
-
-- mac OS X (10.8.5)
-- git-annex version: 4.20131002-gf25991c
-- `PATH` variable has `/Applications/git-annex.app/Contents/MacOS/bundle` at the front, so if git-annex comes with a binary, it is used
-
-
-### Please provide any additional information below.
-
-[[!format sh """
-# If you can, paste a complete transcript of the problem occurring here.
-# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log
-
-
-# End of transcript or log.
-"""]]
-
-> [[done]]; see my comment. --[[Joey]]