Package VMBuilder :: Module distro
[frames] | no frames]

Source Code for Module VMBuilder.distro

 1  # 
 2  #    Uncomplicated VM Builder 
 3  #    Copyright (C) 2007-2009 Canonical Ltd. 
 4  #     
 5  #    See AUTHORS for list of contributors 
 6  # 
 7  #    This program is free software: you can redistribute it and/or modify 
 8  #    it under the terms of the GNU General Public License version 3, as 
 9  #    published by the Free Software Foundation. 
10  # 
11  #    This program is distributed in the hope that it will be useful, 
12  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
13  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
14  #    GNU General Public License for more details. 
15  # 
16  #    You should have received a copy of the GNU General Public License 
17  #    along with this program.  If not, see <http://www.gnu.org/licenses/>. 
18  # 
19  #    Distro super class 
20  from   VMBuilder.util    import run_cmd 
21  import VMBuilder.plugins 
22   
23 -class Distro(VMBuilder.plugins.Plugin):
24 - def has_xen_support(self):
25 """Install the distro into destdir""" 26 raise NotImplemented('Distro subclasses need to implement the has_xen_support method')
27
28 - def install(self, destdir):
29 """Install the distro into destdir""" 30 raise NotImplemented('Distro subclasses need to implement the install method')
31
32 - def post_mount(self, fs):
33 """Called each time a filesystem is mounted to let the distro add things to the filesystem"""
34
35 - def install_vmbuilder_log(self, logfile):
36 """Let the distro copy the install logfile to the guest"""
37