Package VMBuilder :: Package plugins :: Package ubuntu :: Module suite
[frames] | no frames]

Source Code for Module VMBuilder.plugins.ubuntu.suite

 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  from   VMBuilder.util import run_cmd 
20  import VMBuilder.disk as disk 
21  import VMBuilder 
22  import logging 
23  import glob 
24  import sys 
25   
26 -class Suite(object):
27 - def __init__(self, vm):
28 self.vm = vm 29 self.isodir = '/media/vmbuilder_inst_image' 30 self.iso_mounted = False
31
32 - def check_arch_validity(self, arch):
33 """Checks whether the given arch is valid for this suite""" 34 raise NotImplemented('Suite subclasses need to implement the check_arch_validity method')
35