From 0dfc1d4e6eb37aadaba47a210539b2438fba97f5 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 29 Sep 2017 12:55:42 -0400 Subject: remove old closed bugs and todo items to speed up wiki updates and reduce size Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done --- ...STANDARD__95__IA_for_S3_remote_not_working.mdwn | 63 ---------------------- 1 file changed, 63 deletions(-) delete mode 100644 doc/bugs/STANDARD__95__IA_for_S3_remote_not_working.mdwn (limited to 'doc/bugs/STANDARD__95__IA_for_S3_remote_not_working.mdwn') diff --git a/doc/bugs/STANDARD__95__IA_for_S3_remote_not_working.mdwn b/doc/bugs/STANDARD__95__IA_for_S3_remote_not_working.mdwn deleted file mode 100644 index c221e00b5..000000000 --- a/doc/bugs/STANDARD__95__IA_for_S3_remote_not_working.mdwn +++ /dev/null @@ -1,63 +0,0 @@ -### Please describe the problem. - -Cannot set S3 remote to use Infrequently accessed. - -### What steps will reproduce the problem? - -git annex enableremote storageclass=STANDARD_IA - -### What version of git-annex are you using? On what operating system? - -5.20150930 on Arch Linux - -### Please provide any additional information below. - -[[!format sh """ - -# Trying with RR -$ git annex enableremote amazon storageclass=REDUCED_REDUNDANCY -enableremote amazon (encryption update) (hybrid cipher with gpg key XXX) ok -(recording state in git...) - -$ git annex info amazon -remote: amazon -description: [amazon] -uuid: XXX -trust: semitrusted -cost: 250.0 -type: S3 -creds: embedded in git repository (gpg encrypted) -bucket: XXX -endpoint: s3.amazonaws.com -port: 80 -storage class: ReducedRedundancy -# snip - -# Trying with IA -$ git annex enableremote amazon storageclass=STANDARD_IA -enableremote amazon (encryption update) (hybrid cipher with gpg key XXX) ok -(recording state in git...) - -$ git annex info amazon -remote: amazon -description: [amazon] -uuid: XXX -trust: semitrusted -cost: 250.0 -type: S3 -creds: embedded in git repository (gpg encrypted) -bucket: XXX -endpoint: s3.amazonaws.com -port: 80 -storage class: Standard - -# End of transcript or log. -"""]] - -### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) - -I've had great experiences using git annex normally, but the special remotes tend -to get dicey, like here. - -> The `STANDARD_IA` docuemntation now includes the necessary version of the -> aws library to support this feature. [[done]] --[[Joey]] -- cgit v1.2.3