~kees/vmbuilder/use-ext4

« back to all changes in this revision

Viewing changes to VMBuilder/plugins/ubuntu/karmic.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:
29
29
 
30
30
    def pre_install(self):
31
31
        self.vm.install_file('/etc/hosts', contents='')
 
32
 
 
33
    def set_filesystem_types(self):
 
34
        # Default for Karmic and later is ext4
 
35
        for filesystem in self.filesystems:
 
36
            filesystem.set_type('ext4')