~kees/vmbuilder/use-ext4

« back to all changes in this revision

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

  • Committer: Kees Cook
  • Date: 2009-12-10 00:46:48 UTC
  • Revision ID: kees@outflux.net-20091210004648-7glm0gnkvjrwvbu0
use ext4 by default in Karmic and later.  LP: #494804

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
            self.get_ec2_ramdisk()
144
144
            self.apply_ec2_settings()
145
145
 
 
146
        self.set_filesystem_types()
 
147
 
146
148
    def install(self, destdir):
147
149
        self.destdir = destdir
148
150
        self.suite.install(destdir)
233
235
    def apply_ec2_settings(self):
234
236
        return self.suite.apply_ec2_settings()
235
237
 
 
238
    def set_filesystem_types(self):
 
239
        pass
 
240
 
236
241
register_distro(Ubuntu)