Hi Chmouel and all,
i've tested the new initscripts "initscripts-5.60-3mdk".
They always disable my supermount.
I added "cat /proc/modules > /tmp/proc-modules" just befor the supermount
test in "mandrake_everytime". Here the result:
+---8<----------------------------------------------
| supermount 35120 4 (autoclean)
| nls_iso8859-1 2848 1 (autoclean)
| nls_cp437 4368 1 (autoclean)
| vfat 12144 1
| fat 32640 0 [vfat]
+---8<----------------------------------------------
As you can see, supermount is already loaded. Coult you please apply the
attached patch to mandrake_everytime.
It will not break anything, but fix my problem with already loaded module ...
(Tested here ...)
Thx in advance ...
--
_
Tschüss und bis demnächst/à bientôt, _|_|_
(") *
Stefan /v\ /
/( )X Penguin Powered!
+------------------------------------+----------------(m-m)------------------+
| Stefan Siegel | http://www.student.uni-kl.de/~siegel/ |
| Kurt-Schumacher-Str. 34 / App. 144 | mailto:[EMAIL PROTECTED] |
| D-67663 Kaiserslautern | PGP Public Key: |
| Tel.: +49-631-18269 | finger -l [EMAIL PROTECTED] |
+------------------------------------+---------------------------------------+
--- /etc/init.d/mandrake_everytime.rpmorig Mon Feb 19 14:27:26 2001
+++ /etc/init.d/mandrake_everytime Tue Feb 20 09:05:47 2001
@@ -15,7 +15,7 @@
# Disabling supermount if not here
if [[ $(uname -m) != sparc* ]];then
if grep -q '^\/.*supermount.*' /etc/fstab && \
- ! insmod -n supermount >/dev/null 2>/dev/null && [ -x /usr/bin/perl ];then
+ ! modprobe -n supermount >/dev/null 2>/dev/null && [ -x /usr/bin/perl ];then
action "Disabling Supermount" /usr/sbin/supermount -i disable
fi
fi