diff options
author | https://www.google.com/accounts/o8/id?id=AItOawkzwmw_zyMpZC9_J7ey--woeYPoZkAOgGw <dxtrish@web> | 2014-02-07 12:16:21 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-02-07 12:16:21 +0000 |
commit | a82313ae46e14f0ab3bac229189179a3b668ed99 (patch) | |
tree | db45423e81be9c797e8d4b0282240fa28bcf832b /doc | |
parent | 9ff6b52b49b5ebc68c37356642a46e8d86b06460 (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/Creating_a_WebDAV_repo_under_OpenBSD.mdwn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/bugs/Creating_a_WebDAV_repo_under_OpenBSD.mdwn b/doc/bugs/Creating_a_WebDAV_repo_under_OpenBSD.mdwn new file mode 100644 index 000000000..b90599b6a --- /dev/null +++ b/doc/bugs/Creating_a_WebDAV_repo_under_OpenBSD.mdwn @@ -0,0 +1,27 @@ +### Please describe the problem. +When creating a https webdav repository under openbsd it complains that /etc/ssl/certs doesn't exist. This is true considering all certs are stored in /etc/ssl/cert.pem. +After /etc/ssl/certs is created it complains about that the certificate has an unknown CA, for obvious reasons. + +A workaround is to symlink /etc/ssl/cert.pem in /etc/ssl/certs + +### What steps will reproduce the problem? +See below + +### What version of git-annex are you using? On what operating system? +5.20140129 under OpenBSD 5.4 + +### 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 +WEBDAV_USERNAME=<username> WEBDAV_PASSWORD=<password> git annex initremote box.com type=webdav url=https://dav.box.com/dav/Documents chunksize=100mb encryption=hybrid keyid=<key> mac=HMACSHA512 +initremote box.com (encryption setup) (hybrid cipher with gpg key <key>) (testing WebDAV server...) + +git-annex: WebDAV failed to write file: /etc/ssl/certs/: getDirectoryContents: does not exist (No such file or directory): user error +failed +git-annex: initremote: 1 failed + + +# End of transcript or log. +"""]] |