~ubuntu-branches/ubuntu/jaunty/pyca/jaunty

« back to all changes in this revision

Viewing changes to bin/certs2ldap.py

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2008-02-03 19:33:42 UTC
  • mfrom: (3.1.1 feisty)
  • Revision ID: james.westby@ubuntu.com-20080203193342-d2nmf79tqp8g6p1k
Tags: 20031118-3.1
* Non-maintainer upload.
* Fix encoding issue in debian/control and debian/copyright.
  Closes: #453999
* Turn Build-Depends-Indep into Build-Depends (lintian error)

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
delete_reason = {openssl.db.DB_TYPE_EXP:'expired',openssl.db.DB_TYPE_REV:'revoked'}
179
179
 
180
180
pyca_section = opensslcnf.data.get('pyca',{})
181
 
openssl.bin_filename = pyca_section.get('OpenSSLExec','/usr/local/ssl/bin/openssl')
 
181
openssl.bin_filename = pyca_section.get('OpenSSLExec','/usr/bin/openssl')
182
182
if not os.path.isfile(openssl.bin_filename):
183
183
  sys.stderr.write('Did not find OpenSSL executable %s.\n' % (openssl.bin_filename))
184
184
  sys.exit(1)