summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Distro/Base.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-03-12 23:50:25 +0100
committerOliver Tappe2007-03-12 23:50:25 +0100
commit1341773fa52e38aaa1e6b9fcbae51f808aabe062 (patch)
tree8ae6b130763c5492faab21b00c6cfff8f6480a53 /installer/OpenSLX/OSExport/Distro/Base.pm
parent* added slxos-export script and the corresponding engine and exporter impleme... (diff)
downloadcore-1341773fa52e38aaa1e6b9fcbae51f808aabe062.tar.gz
core-1341773fa52e38aaa1e6b9fcbae51f808aabe062.tar.xz
core-1341773fa52e38aaa1e6b9fcbae51f808aabe062.zip
* 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
Diffstat (limited to 'installer/OpenSLX/OSExport/Distro/Base.pm')
-rw-r--r--installer/OpenSLX/OSExport/Distro/Base.pm99
1 files changed, 99 insertions, 0 deletions
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 <ot@openslx.com>
+#
+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