summaryrefslogtreecommitdiffstats
path: root/src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm
diff options
context:
space:
mode:
authorDirk2012-12-15 00:57:08 +0100
committerDirk2012-12-15 00:57:08 +0100
commit47e090aeb770bb53e7bd42d4742cf5b85ad54080 (patch)
tree23deaab88599bd2b55141f313b6ff05144956f14 /src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm
parent... (diff)
parentFW is now automatically added to the initramfs. Checks are done with modinfo. (diff)
downloadcore-47e090aeb770bb53e7bd42d4742cf5b85ad54080.tar.gz
core-47e090aeb770bb53e7bd42d4742cf5b85ad54080.tar.xz
core-47e090aeb770bb53e7bd42d4742cf5b85ad54080.zip
Merge branch 'master' of git.openslx.org:openslx/core
Diffstat (limited to 'src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm')
-rw-r--r--src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm
new file mode 100644
index 00000000..e040e3f8
--- /dev/null
+++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Scientific.pm
@@ -0,0 +1,29 @@
+# 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/
+# -----------------------------------------------------------------------------
+# profile/OpenSLX/Distro/Scientific.pm
+# - provides Scientific Linux specific overrides of the Distro API for the
+# profile plugin.
+# -----------------------------------------------------------------------------
+package profile::OpenSLX::Distro::Scientific;
+
+use strict;
+use warnings;
+
+use base qw(profile::OpenSLX::Distro::Rhel);
+
+use OpenSLX::Basics;
+use OpenSLX::Utils;
+
+################################################################################
+### interface methods
+################################################################################
+
+1;