User login
Navigation
Recent blog posts
- Ubuntu mirrors up and improved!
- Google-jstemplate: Iterate object with unknown properties
- nginx https proxypass for php apps
- sugarcrm & memcache: Doing it Wrong
- subversion and https in Ubuntu Karmic
- Drupal: Views block delta converted to md5 hash
- Ubuntu Server install requires PAE
- Installing Drupal from command line
- Drupal: Handling form field weight through CCK
- minify javascript using Google Closure Compiler
angch's location
angch twitter
subversion and https in Ubuntu Karmic

angch — Wed, 20/01/2010 - 17:29
Had a problem checking out an https subversion repository (self-signed) in Ubuntu Karmic, while Hardy is fine.
In short:
- svn Hardy uses ra_dav for https
- svn Karmic uses ra_neon (and libneon27-gnutls) for https.
gnutls is particularly sensitive about certs. So we need to work around it.
So do a:
sudo apt-get install libneon27
LD_PRELOAD=/usr/lib/libneon.so.27 /usr/bin/svn co https://myserver/myrepoAbove fix comes from:
https://bugs.launchpad.net/ubuntu/+source/subversion/+bug/294648
