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

Source Code for Module VMBuilder.plugins.ubuntu.lucid

 1  # 
 2  #    Uncomplicated VM Builder 
 3  #    Copyright (C) 2010 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  import os 
20  from   VMBuilder.util import run_cmd 
21  from   VMBuilder.plugins.ubuntu.karmic import Karmic 
22   
23 -class Lucid(Karmic):
24 valid_flavours = { 'i386' : ['386', 'generic', 'generic-pae', 'virtual'], 25 'amd64' : ['generic', 'preempt', 'server', 'virtual'] } 26
27 - def divert_file(self, path, add):
28 if add: action = "--add" 29 else: action = "--remove" 30 if not add: 31 os.remove('%s/%s' % (self.context.chroot_dir, path)) 32 run_cmd('chroot', self.context.chroot_dir, 'dpkg-divert', '--local', '--rename', action, path)
33