~ubuntu-branches/ubuntu/oneiric/cryptsetup/oneiric

« back to all changes in this revision

Viewing changes to debian/cryptsetup.apport

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Steve Langasek, Scott James Remnant
  • Date: 2009-10-14 04:52:16 UTC
  • Revision ID: james.westby@ubuntu.com-20091014045216-yej34imeg7sh3ljd
Tags: 2:1.0.6+20090405.svn49-1ubuntu6
[ Steve Langasek ]
* Move the Debian Vcs- fields aside.

[ Scott James Remnant ]
* debian/cryptdisks-enable.upstart: Don't overcompensate for my idiocy,
  cryptsetup should not need a controlling terminal, just a terminal
  is fine.  May fix LP: #439138.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''apport package hook for cryptsetup
 
2
 
 
3
(c) 2009 Author: Reinhard Tartler <siretart@tauware.de>
 
4
'''
 
5
 
 
6
from apport.hookutils import *
 
7
 
 
8
def add_info(report):
 
9
        attach_file(report, '/etc/fstab', 'fstab')
 
10
        attach_file_if_exists(report, '/etc/crypttab', 'crypttab')
 
11