aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
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
Diffstat (limited to 'doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn')
-rw-r--r--doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn29
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn b/doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn
deleted file mode 100644
index 206b92410..000000000
--- a/doc/bugs/regression_due_to_usage_of_ssh_7.3___34__include__34___feature.mdwn
+++ /dev/null
@@ -1,29 +0,0 @@
-### Please describe the problem.
-
-The latest released version of git-annex (6.20161031) breaks on all platforms that do not have ssh 7.3 installed as it relies on "Include" ssh_config(5) configuration flag that appeared in 7.3p1. The broken platforms include macOS Sierra and Ubuntu 16.04 Xenial (LTS) both include ssh 7.2
-
- # Ubuntu 16.04
- $ ssh -V
- OpenSSH_7.2p2 Ubuntu-4ubuntu2.1, OpenSSL 1.0.2g 1 Mar 2016
-
- # macOS
- $ ssh -V
- OpenSSH_7.2p2, LibreSSL 2.4.1
-
-Here is what it looks like:
-
- $ git annex move --to vir
- move Foobar.mkv (checking vir...) .git/annex/ssh.config: line 1: Bad configuration option: include
- .git/annex/ssh.config: line 2: Bad configuration option: include
- .git/annex/ssh.config: terminating, 2 bad configuration options
- (unable to check vir
- CallStack (from HasCallStack):
- error, called at ./Remote/Helper/Messages.hs:32:15 in main:Remote.Helper.Messages) failed
-
-
- $ cat .git/annex/ssh.config
- Include ~/.ssh/config
- Include /etc/ssh/ssh_config
- ServerAliveInterval 60
-
-> This is already fixed in git. [[done]] --[[Joey]]