From 1341773fa52e38aaa1e6b9fcbae51f808aabe062 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 12 Mar 2007 22:50:25 +0000 Subject: * added distro specific part for os-export and put default export-filter there * the export filter is now built from the parts provided by us (in the distro-module) and the optional export-filter.local file (for which we provide an example) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@761 95ad53e4-c205-0410-b2fa-d234c58c8868 --- installer/OpenSLX/OSExport/Distro/Base.pm | 99 +++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 installer/OpenSLX/OSExport/Distro/Base.pm (limited to 'installer/OpenSLX/OSExport/Distro/Base.pm') diff --git a/installer/OpenSLX/OSExport/Distro/Base.pm b/installer/OpenSLX/OSExport/Distro/Base.pm new file mode 100644 index 00000000..36c214a1 --- /dev/null +++ b/installer/OpenSLX/OSExport/Distro/Base.pm @@ -0,0 +1,99 @@ +# Base.pm - provides empty base of the distro-specific part of the +# OpenSLX OSExport API. +# +# (c) 2006 - OpenSLX.com +# +# Oliver Tappe +# +package OpenSLX::OSExport::Distro::Base; + +use vars qw($VERSION); +$VERSION = 1.01; # API-version . implementation-version + +use strict; +use Carp; +use File::Basename; +use OpenSLX::Basics; + +################################################################################ +### interface methods +################################################################################ +sub new +{ + confess "Creating OpenSLX::OSExport::Distro::Base-objects directly makes no sense!"; +} + +sub initialize +{ + my $self = shift; + my $engine = shift; + + $self->{'engine'} = $engine; + + $self->initDistroInfo(); +} + +sub initDistroInfo +{ + my $self = shift; + + $self->{'clone-filter'} = " + - *.bak + - *.old + - *lost+found* + - *~ + - .*.cmd + - .svn + - /* + + /bin + + /boot + + /dev + - /dev/* + + /etc + - /etc/dxs + - /etc/exports* + - /etc/opt/openslx + - /etc/resolv.conf.* + - /etc/samba/secrets.tdb + - /etc/shadow* + - /etc/vmware/installer.sh + + /home + - /home/* + + /lib + + /lib64 + + /mnt + - /mnt/* + + /opt + - /opt/openslx + + /proc + - /proc/* + + /root + - /root/* + + /sbin + + /sys + - /sys/* + + /tmp + - /tmp/* + + /usr + - /usr/lib/vmware/modules/* + + /var + - /var/lib/vmware + - /var/opt/openslx + - /var/tmp/* + "; +} + +1; +################################################################################ + +=pod + +=head1 NAME + +OpenSLX::OSExport::Distro::Base + +=head1 SYNOPSIS + +... + +=cut -- cgit v1.2.3-55-g7522