summaryrefslogtreecommitdiffstats
path: root/initrd/initrd-stuff/bin/servconfig
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-03-24 02:30:14 +0100
committerDirk von Suchodoletz2006-03-24 02:30:14 +0100
commitda149fc84bb701f1705482d224dcab75c3b7dea9 (patch)
treed47c3a803446abe83f2d20bd2a369a0d0969ad59 /initrd/initrd-stuff/bin/servconfig
parentinstaller: rsync again (diff)
downloadcore-da149fc84bb701f1705482d224dcab75c3b7dea9.tar.gz
core-da149fc84bb701f1705482d224dcab75c3b7dea9.tar.xz
core-da149fc84bb701f1705482d224dcab75c3b7dea9.zip
integration of vmware module. hw modules to ignore for loading ...
git-svn-id: http://svn.openslx.org/svn/openslx/ld4@126 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/bin/servconfig')
-rwxr-xr-xinitrd/initrd-stuff/bin/servconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/initrd/initrd-stuff/bin/servconfig b/initrd/initrd-stuff/bin/servconfig
index 8c8172a8..d7f784c0 100755
--- a/initrd/initrd-stuff/bin/servconfig
+++ b/initrd/initrd-stuff/bin/servconfig
@@ -338,6 +338,19 @@ config_nscd
# preparation of /tmp directory (partition 44, nfs scratch, ramdisk)
waitfor /tmp/tmpready 10000
# create some directories and correct permissions
+tmpisdisk=`sed -n '/\/tmp/p' /mnt/etc/fstab`
+# if there is no local disk partition for /tmp then try to mount a rw
+# NFS scratch space (if defined in $scratch) and prepared on server
+if [ -n "$scratch" -a -z "$tmpisdisk" ] ; then
+ mkdir -p /tmp/scratch >/dev/null 2>&1
+ mount -t nfs -o rw,nolock,intr,nodev,soft,timeo=2,nosuid ${scratch} \
+ /tmp/scratch >/dev/null 2>&1 && {
+ mkdir -p /tmp/scratch/${clientip} >/dev/null 2>&1
+ umount /tmp/scratch
+ mount -t nfs -o rw,nolock,intr,nodev,soft,timeo=2,nosuid \
+ ${scratch}/${clientip} /mnt/tmp >/dev/null 2>&1; }
+fi
+chmod 1777 /mnt/tmp
for i in \
/tmp/.ICE-unix \
/tmp/.X11-unix; do testmkd /mnt/$i; done