summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm
diff options
context:
space:
mode:
authorDirk von Suchodoletz2008-12-22 20:41:06 +0100
committerDirk von Suchodoletz2008-12-22 20:41:06 +0100
commit9e13a8aa47cf7c11020793c312e478424266c56a (patch)
treed863dc5b0c47ad2815e851c1e09b6df7feb30e12 /os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm
parentPing to the nfs server added to init: Before the NFS root is mounted an (diff)
downloadcore-9e13a8aa47cf7c11020793c312e478424266c56a.tar.gz
core-9e13a8aa47cf7c11020793c312e478424266c56a.tar.xz
core-9e13a8aa47cf7c11020793c312e478424266c56a.zip
Starting with qemukvm plugin (another virtualisation environment).
See #312 too ... git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2445 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm')
-rw-r--r--os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm41
1 files changed, 41 insertions, 0 deletions
diff --git a/os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm b/os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm
new file mode 100644
index 00000000..94a06009
--- /dev/null
+++ b/os-plugins/plugins/qemukvm/OpenSLX/Distro/Debian.pm
@@ -0,0 +1,41 @@
+# Copyright (c) 2008 - 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/
+# -----------------------------------------------------------------------------
+# qemukvm/OpenSLX/Distro/debian.pm
+# - provides Debian-specific overrides of the Distro API for the qemukvm
+# plugin.
+# -----------------------------------------------------------------------------
+package qemukvm::OpenSLX::Distro::Debian;
+
+use strict;
+use warnings;
+
+use base qw(qemukvm::OpenSLX::Distro::Base);
+
+use OpenSLX::Basics;
+use OpenSLX::Utils;
+
+################################################################################
+### interface methods
+################################################################################
+
+sub fillRunlevelScript
+{
+ my $self = shift;
+ my $location = shift;
+ my $kind = shift;
+
+ my $script = unshiftHereDoc(<<' End-of-Here');
+
+ End-of-Here
+ return $script;
+}
+
+1;