summaryrefslogtreecommitdiffstats
path: root/initramfs
diff options
context:
space:
mode:
authorSebastian Schmelzer2009-02-12 15:29:21 +0100
committerSebastian Schmelzer2009-02-12 15:29:21 +0100
commit7c56fb6d46c594e5f5291a542674f29bb7b06af4 (patch)
tree8f19251b9f88dd58c067fb1fdcaf550d7b1270a7 /initramfs
parent* improved support for plugin configurations such that it should now be possible (diff)
downloadcore-7c56fb6d46c594e5f5291a542674f29bb7b06af4.tar.gz
core-7c56fb6d46c594e5f5291a542674f29bb7b06af4.tar.xz
core-7c56fb6d46c594e5f5291a542674f29bb7b06af4.zip
* fix for suse 11.1: portmap is now provided by rpcbind
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2575 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs')
-rw-r--r--initramfs/distro-specs/suse/functions-11.137
1 files changed, 37 insertions, 0 deletions
diff --git a/initramfs/distro-specs/suse/functions-11.1 b/initramfs/distro-specs/suse/functions-11.1
new file mode 100644
index 00000000..67c84289
--- /dev/null
+++ b/initramfs/distro-specs/suse/functions-11.1
@@ -0,0 +1,37 @@
+# Copyright (c) 2003..2006 - RZ Uni Freiburg
+# Copyright (c) 2006..2009 - OpenSLX GmbH
+#
+# This program/file 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 feedback to feedback@openslx.org
+#
+# General information about OpenSLX can be found under http://openslx.org
+#
+# configuration script for OpenSuSE 10.3 to configure linux stateless clients
+# (included by init, hwautocfg, servconfig within InitialRamFS after
+# inclusion of the main functions file). This file is the main base for the
+# several SuSE distro versions
+
+# settings of central variables (formerly done via config-*, these variables
+# are disputable ...)
+# D_DIRINBINDMNT - lists of directories to be created in bind mounted rw
+# part of the client filesystem
+# D_RODIRSINRW - ReadOnly Directories in RW part of filesystem to save on
+# TempFS usage
+# D_DIRINDXS - directories in client filesystem which should be present
+# anyhow
+
+config_rpcbind () {
+ rllinker "rpcbind" 4 5
+}
+
+# start portmapper (needed at least for nfs and nis services)
+config_portmap () {
+ # portmap is provided via rpcbind in suse 11.1
+ config_rpcbind
+}
+
+
+# no changes from functions-default by now