~ilowe/vmbuilder/lp415420

« back to all changes in this revision

Viewing changes to VMBuilder/plugins/ubuntu/dapper.py

  • Committer: Soren Hansen
  • Date: 2009-08-11 12:23:47 UTC
  • Revision ID: soren@canonical.com-20090811122347-3562q8qxo829e0jo
Brown paper bag commit..

Put in a temporary fix to work around https://launchpad.net/bugs/408901 which
caused amd64 builds to fail.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    xen_kernel_flavour = None
38
38
    virtio_net = False
39
39
 
 
40
    def pre_install():
 
41
        pass
 
42
 
40
43
    def check_kernel_flavour(self, arch, flavour):
41
44
        return flavour in self.valid_flavours[arch]
42
45
 
49
52
        logging.debug("debootstrapping")
50
53
        self.debootstrap()
51
54
 
 
55
        self.pre_install()
 
56
 
52
57
        logging.debug("Setting up sources.list")
53
58
        self.install_sources_list()
54
59