Package VMBuilder :: Package plugins :: Package ubuntu :: Module dapper :: Class Dapper
[frames] | no frames]

Class Dapper

source code

 object --+    
          |    
suite.Suite --+
              |
             Dapper
Known Subclasses:

Instance Methods
 
check_kernel_flavour(self, arch, flavour) source code
 
check_arch_validity(self, arch)
Checks whether the given arch is valid for this suite
source code
 
install(self, destdir) source code
 
update(self) source code
 
install_authorized_keys(self) source code
 
create_initial_user(self) source code
 
kernel_name(self) source code
 
config_network(self) source code
 
unprevent_daemons_starting(self) source code
 
prevent_daemons_starting(self) source code
 
install_extras(self) source code
 
unmount_volatile(self) source code
 
install_menu_lst(self) source code
 
mangle_grub_menu_lst(self) source code
 
install_sources_list(self) source code
 
install_fstab(self) source code
 
install_device_map(self) source code
 
debootstrap(self) source code
 
install_kernel(self) source code
 
install_grub(self) source code
 
create_devices(self) source code
 
install_from_template(self, *args, **kwargs) source code
 
run_in_target(self, *args, **kwargs) source code
 
post_mount(self, fs) source code

Inherited from suite.Suite: __init__

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables
  updategrub = '/sbin/update-grub'
  grubroot = '/lib/grub'
  valid_flavours = {'amd64': ['amd64-generic', 'amd64-k8', 'amd6...
  default_flavour = {'amd64': 'amd64-server', 'i386': 'server'}
  disk_prefix = 'hd'
Properties

Inherited from object: __class__

Method Details

check_arch_validity(self, arch)

source code 

Checks whether the given arch is valid for this suite

Overrides: suite.Suite.check_arch_validity
(inherited documentation)

Class Variable Details

valid_flavours

Value:
{'amd64': ['amd64-generic',
           'amd64-k8',
           'amd64-k8-smp',
           'amd64-server',
           'amd64-xeon'],
 'i386': ['386',
          '686',
          '686-smp',
...