Update of /cvsroot/devil-linux/build/config/etc/init.d
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14555/config/etc/init.d
Modified Files:
halt reboot
Log Message:
unmount filesystems on reboot/shutdown
Index: reboot
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/init.d/reboot,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- reboot 6 Sep 2003 01:59:26 -0000 1.3
+++ reboot 28 Apr 2004 23:25:00 -0000 1.4
@@ -16,11 +16,12 @@
# Description: reboots the system after shutdown
### END INIT INFO
+/etc/init.d/mountfs stop
+
#
# Call reboot. See man halt for the meaning of the parameters
#
-
sync
echo "System reboot in progress..."
Index: halt
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/init.d/halt,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- halt 15 Mar 2004 01:22:51 -0000 1.6
+++ halt 28 Apr 2004 23:25:00 -0000 1.7
@@ -16,6 +16,8 @@
# Description: halts the system after shutdown
### END INIT INFO
+/etc/init.d/mountfs stop
+
#
# Call halt. See man halt for the meaning of the parameters
#
|