"moumni, ismail" wrote:
>
> Dear lkcd team,
>
> My name is Ismail Moumni. I work at EMC Corporation where we are looking to
> release an application running on linux. We would like our customers to take
> advantage of your suite to send us reliable information pertaining to our
> software. To this end I have 2 questions regarding your lkcd suite:
>
> 1) Do you expect to have a patch for the system startup scripts
> released soon for redhat 7.1. Also do you expect to have a version for suse
> 7.1?
> 2) We have noticed that the rc.sysinit patch for redhat 7.0 might have
> an error in it when trying to patch. (patch malformed at line 29). Do you
> expect to have a fix soon?
>
> Regards,
> Ismail Moumni
You know, it always helps to actually include the patch. :)
--Matt --- rc.sysinit.rh71.old Tue Jul 31 14:50:14 2001
+++ rc.sysinit.rh71 Tue Jul 31 14:52:25 2001
@@ -145,9 +145,6 @@
fi
fi
-# Start up swapping.
-action $"Activating swap partitions: " swapon -a -e
-
# Set the hostname.
action $"Setting hostname ${HOSTNAME}: " hostname ${HOSTNAME}
@@ -524,6 +521,14 @@
# mounted). Contrary to standard usage,
# filesystems are NOT unmounted in single user mode.
action $"Mounting local filesystems: " mount -a -t nonfs,smbfs,ncpfs
+
+if [ -x /sbin/vmdump ] ; then
+ action $"Configuring system for crash dumps: " /sbin/vmdump config
+ action $"Saving crash dump (if one exists): " /sbin/vmdump save
+fi
+
+# Start up swapping.
+action $"Activating swap partitions: " swapon -a -e
if [ X"$_RUN_QUOTACHECK" = X1 -a -x /sbin/quotacheck ]; then
if [ -x /sbin/convertquota ]; then
|