summaryrefslogblamecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/Any_Clone.pm
blob: 7602870d0f02b29d941a2cfc84cb448d6fd030cb (plain) (tree)






























                                                                                
# 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;