[Pkg-sysvinit-commits] r127 - sysvinit/trunk/debian/initscripts/etc/init.d

Thomas Hood jdthood-guest at costa.debian.org
Fri Nov 18 12:58:18 UTC 2005


Author: jdthood-guest
Date: 2005-11-18 12:58:17 +0000 (Fri, 18 Nov 2005)
New Revision: 127

Modified:
   sysvinit/trunk/debian/initscripts/etc/init.d/umountfs
Log:
Use log_action_begin_msg and log_action_end_msg instead of log_begin_msg and log_end_msg

Modified: sysvinit/trunk/debian/initscripts/etc/init.d/umountfs
===================================================================
--- sysvinit/trunk/debian/initscripts/etc/init.d/umountfs	2005-11-18 12:57:18 UTC (rev 126)
+++ sysvinit/trunk/debian/initscripts/etc/init.d/umountfs	2005-11-18 12:58:17 UTC (rev 127)
@@ -18,7 +18,7 @@
 
 do_stop () {
     # Umount all filesystems except root and the virtual ones
-    log_begin_msg "Unmounting local filesystems..."
+    log_action_begin_msg "Unmounting local filesystems"
 
     # List all mounts, deepest mount point first
     LANG=C sort -r -k 2 /etc/mtab | 
@@ -40,14 +40,14 @@
     done
     umount -r -d $DIRS
     )
-    log_end_msg $?
+    log_action_end_msg $?
 
     # Make sure tmpfs file systems are umounted before turning off
     # swap, to avoid running out of memory if the tmpfs filesystems
     # use a lot of space.
-    log_begin_msg "Deactivating swap..."
+    log_action_begin_msg "Deactivating swap"
     swapoff -a
-    log_end_msg $?
+    log_action_end_msg $?
 }
 
 case "$1" in




More information about the Pkg-sysvinit-commits mailing list