summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm
diff options
context:
space:
mode:
authorDirk von Suchodoletz2009-09-09 19:11:12 +0200
committerDirk von Suchodoletz2009-09-09 19:11:12 +0200
commit8ad93a320e384078e192e04d3a2ed53d0f706e23 (patch)
tree9089ba58f896b811b88d1e1802ebff3676dcf652 /os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm
parentintegrated firmware copy process into kernel module process, deleted unused a... (diff)
downloadcore-8ad93a320e384078e192e04d3a2ed53d0f706e23.tar.gz
core-8ad93a320e384078e192e04d3a2ed53d0f706e23.tar.xz
core-8ad93a320e384078e192e04d3a2ed53d0f706e23.zip
Plugin to include pvs stuff more formally (do not use it yet!) ...
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@3148 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm')
-rw-r--r--os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm23
1 files changed, 23 insertions, 0 deletions
diff --git a/os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm b/os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm
new file mode 100644
index 00000000..c7496ac0
--- /dev/null
+++ b/os-plugins/plugins/pvs/OpenSLX/Distro/Ubuntu.pm
@@ -0,0 +1,23 @@
+# Copyright (c) 2009 - 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/
+# -----------------------------------------------------------------------------
+# pvs/OpenSLX/Distro/Ubuntu.pm
+# - provides Ubuntu-specific overrides of the Distro API for the pvs
+# plugin.
+# -----------------------------------------------------------------------------
+package pvs::OpenSLX::Distro::Ubuntu;
+
+use strict;
+use warnings;
+
+# inherit everything from Debian (as Ubuntu is based on it anyway)
+use base qw(pvs::OpenSLX::Distro::Debian);
+
+1;