summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Distro/Ubuntu.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-03-23 10:14:09 +0100
committerOliver Tappe2007-03-23 10:14:09 +0100
commitd8565fa1432a85ba53237545f8780d8cb30d1060 (patch)
tree22d722ace0eb25d18ef0e635f0dcf366d96d3359 /installer/OpenSLX/OSExport/Distro/Ubuntu.pm
parent* adjusted argument conventions to a more sensible separation between options... (diff)
downloadcore-d8565fa1432a85ba53237545f8780d8cb30d1060.tar.gz
core-d8565fa1432a85ba53237545f8780d8cb30d1060.tar.xz
core-d8565fa1432a85ba53237545f8780d8cb30d1060.zip
* export backend is now capable of exporting just any distribution
* added specializations for Gentoo, Fedora, Debian and Ubuntu git-svn-id: http://svn.openslx.org/svn/openslx/trunk@803 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSExport/Distro/Ubuntu.pm')
-rw-r--r--installer/OpenSLX/OSExport/Distro/Ubuntu.pm51
1 files changed, 51 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSExport/Distro/Ubuntu.pm b/installer/OpenSLX/OSExport/Distro/Ubuntu.pm
new file mode 100644
index 00000000..52062a87
--- /dev/null
+++ b/installer/OpenSLX/OSExport/Distro/Ubuntu.pm
@@ -0,0 +1,51 @@
+# 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; \ No newline at end of file