summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/ConfigExport/DHCP/ISC.pm
diff options
context:
space:
mode:
authorSebastian Schmelzer2010-09-02 17:50:49 +0200
committerSebastian Schmelzer2010-09-02 17:50:49 +0200
commit416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5 (patch)
tree4715f7d742fec50931017f38fe6ff0a89d4ceccc /config-db/OpenSLX/ConfigExport/DHCP/ISC.pm
parentFix for the problem reported on the list (sed filter forgotten for the (diff)
downloadcore-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.tar.gz
core-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.tar.xz
core-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.zip
change dir structure
Diffstat (limited to 'config-db/OpenSLX/ConfigExport/DHCP/ISC.pm')
-rw-r--r--config-db/OpenSLX/ConfigExport/DHCP/ISC.pm45
1 files changed, 0 insertions, 45 deletions
diff --git a/config-db/OpenSLX/ConfigExport/DHCP/ISC.pm b/config-db/OpenSLX/ConfigExport/DHCP/ISC.pm
deleted file mode 100644
index 14b427c8..00000000
--- a/config-db/OpenSLX/ConfigExport/DHCP/ISC.pm
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (c) 2006, 2007 - OpenSLX GmbH
-#
-# This program is free software distributed under the GPL version 2.
-# See http://openslx.org/COPYING
-#
-# If you have any feedback please consult http://openslx.org/feedback and
-# send your suggestions, praise, or complaints to feedback@openslx.org
-#
-# General information about OpenSLX can be found at http://openslx.org/
-# -----------------------------------------------------------------------------
-# ISC.pm
-# - provides ISC-specific implementation of DHCP export.
-# -----------------------------------------------------------------------------
-package OpenSLX::ConfigExport::DHCP::ISC;
-
-use strict;
-use warnings;
-
-our $VERSION = 1.01; # API-version . implementation-version
-
-################################################################################
-### This class provides an ISC specific implementation for DHCP export.
-################################################################################
-use OpenSLX::Basics;
-
-################################################################################
-### implementation
-################################################################################
-sub new
-{
- my $class = shift;
- my $self = {};
- return bless $self, $class;
-}
-
-sub execute
-{
- my $self = shift;
- my $clients = shift;
-
- vlog(1, _tr("writing dhcp-config for %s clients", scalar(@$clients)));
- foreach my $client (@$clients) {
-print "ISC-DHCP: $client->{name}\n";
- }
-} \ No newline at end of file