~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/jailbuilder/debian.py

  • Committer: William Grant
  • Date: 2012-06-28 01:52:02 UTC
  • Revision ID: me@williamgrant.id.au-20120628015202-f6ru7o367gt6nvgz
Hah

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        mirror = 'http://archive.ubuntu.com/ubuntu'
30
30
    ec = os.spawnvp(os.P_WAIT, 'debootstrap',
31
31
              ['debootstrap', '--components=' + ','.join(components),
32
 
               '--include=ubuntu-keyring', '--variant=minbase',
 
32
               '--include=ubuntu-keyring,gnupg', '--variant=minbase',
33
33
               release, path, mirror])
34
34
    if ec != 0:
35
35
        raise JailBuildError('debootstrap failed with code %d' % ec)