summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/Any_Clone.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-03-23 10:51:21 +0100
committerOliver Tappe2007-03-23 10:51:21 +0100
commit0e2a54e0dc20a5d4f90ebdf31ba243fb9aaf191b (patch)
treeefb1ef5c21de81d445796c3cfecc388f0e9e64a7 /installer/OpenSLX/OSSetup/Distro/Any_Clone.pm
parent* cosmetics (diff)
downloadcore-0e2a54e0dc20a5d4f90ebdf31ba243fb9aaf191b.tar.gz
core-0e2a54e0dc20a5d4f90ebdf31ba243fb9aaf191b.tar.xz
core-0e2a54e0dc20a5d4f90ebdf31ba243fb9aaf191b.zip
* added support for cloning distros for which no specific module exists yet (like
will probably be the case for Gentoo for a long time). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@805 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Distro/Any_Clone.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Distro/Any_Clone.pm31
1 files changed, 31 insertions, 0 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/Any_Clone.pm b/installer/OpenSLX/OSSetup/Distro/Any_Clone.pm
new file mode 100644
index 00000000..7602870d
--- /dev/null
+++ b/installer/OpenSLX/OSSetup/Distro/Any_Clone.pm
@@ -0,0 +1,31 @@
+# Any_Clone.pm
+# - provides generic clone-only overrides of the OpenSLX OSSetup API.
+#
+# (c) 2006 - OpenSLX.com
+#
+# Oliver Tappe <ot@openslx.com>
+#
+package OpenSLX::OSSetup::Distro::Any_Clone;
+
+use vars qw(@ISA $VERSION);
+@ISA = ('OpenSLX::OSSetup::Distro::Base');
+$VERSION = 1.01; # API-version . implementation-version
+
+use strict;
+use Carp;
+use OpenSLX::Basics;
+use OpenSLX::OSSetup::Distro::Base 1.01;
+
+################################################################################
+### implementation
+################################################################################
+sub new
+{
+ my $class = shift;
+ my $self = {
+ 'base-name' => 'any-clone',
+ };
+ return bless $self, $class;
+}
+
+1; \ No newline at end of file