summaryrefslogblamecommitdiffstats
path: root/installer/OpenSLX/OSExport/Distro/Ubuntu.pm
blob: 52062a8741d7d1f0e5deabca5500089914ce78e1 (plain) (tree)


















































                                                                                
# Ubuntu.pm
#	- provides Ubuntu-specific overrides of the OpenSLX OSExport API.
#
# (c) 2006 - OpenSLX.com
#
# Oliver Tappe <ot@openslx.com>
#
package OpenSLX::OSExport::Distro::Ubuntu;

use vars qw(@ISA $VERSION);
@ISA = ('OpenSLX::OSExport::Distro::Base');
$VERSION = 1.01;		# API-version . implementation-version

use strict;
use Carp;
use OpenSLX::Basics;
use OpenSLX::OSExport::Distro::Base 1.01;

################################################################################
### implementation
################################################################################
sub new
{
	my $class = shift;
	my $self = {
		'base-name' => 'ubuntu',
	};
	return bless $self, $class;
}

sub initDistroInfo
{
	my $self = shift;

	$self->{'export-filter'} = "
		- /var/tmp/*
		- /var/spool/*
		- /var/run/*
		- /var/log/*
		- /var/lib/xdm
		- /var/cache/man/*
		- /usr/share/vmware/*
		- /lib/klibc/events/*
		- /initrd*
		- /etc/cron.*/*
		- /boot/initrd*
		- /boot/grub
	";
}

1;