OS <[EMAIL PROTECTED]> writes:
> All references to the supermount entries in fstab always get overwritten with
> standard entries seemingly whenever I reboot the system. Hence supermount
> never works here at all !!!
you need the last initscripts from cooker, or apply this patch to the
mandrake_everytime (located in the /etc/init.d/) :
Index: mandrake_everytime
===================================================================
RCS file: /home/cvs/cooker/soft/initscripts/mandrake/mandrake_everytime,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- mandrake_everytime 2000/08/28 22:07:12 1.2
+++ mandrake_everytime 2001/01/25 17:38:36 1.3
@@ -1,7 +1,7 @@
#!/bin/bash
# Description: Launch diverses Mandrake Scripts on boot.
# (c) MandrakeSoft, Chmouel Boudjnah <[EMAIL PROTECTED]>
-# $Id: mandrake_everytime,v 1.2 2000/08/28 22:07:12 chmouel Exp $
+# $Id: mandrake_everytime,v 1.3 2001/01/25 17:38:36 chmouel Exp $
. /etc/rc.d/init.d/functions
@@ -15,7 +15,7 @@
# Disabling supermount if not here
if [[ $(uname -m) != sparc* ]];then
if grep -q '^\/.*supermount.*' /etc/fstab && \
- [ ! -f "/lib/modules/$(uname -r)/fs/supermount.o" ] && [ -x /usr/bin/perl
];then
+ ! insmod -n supermount >/dev/null 2>/dev/null && [ -x /usr/bin/perl ];then
action "Disabling Supermount" /usr/sbin/supermount -i disable
fi
fi
--
MandrakeSoft Inc http://www.chmouel.org
--Chmouel