~ev/apport/raring-fixes

« back to all changes in this revision

Viewing changes to doc/crashdb-conf.txt

  • Committer: Martin Pitt
  • Date: 2013-03-06 07:42:55 UTC
  • Revision ID: martin.pitt@canonical.com-20130306074255-4m1u9gzd75lsffiu
* launchpad.py: Add support for filing bugs as private. Document this in doc/crashdb-conf.txt. (LP: #1144647)

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
     apport-retrace and crash-digger to process crash reports of foreign
132
132
     architectures. Defaults to system architecture.
133
133
 
 
134
   Crash reports are always filed as private Launchpad bug. Bug reports are
 
135
   public by default, but a package hook can change this by adding a
 
136
   "LaunchpadPrivate" report field (NOT a crashdb option!) with any value, and
 
137
   adding a "LaunchpadSubscribe" report field with a list of initial
 
138
   subscribers. For example, your package hook might do this:
 
139
 
 
140
   def add_info(report):
 
141
       report['LaunchpadPrivate'] = '1'
 
142
       report['LaunchpadSubscribe'] = 'joe-hacker foobar-dev'
134
143
 
135
144
 * "memory" is a simple implementation of crash database interface which keeps
136
145
   everything in RAM. This is mainly useful for testing and debugging.