[Pkg-sysvinit-commits] r1143 - sysvinit/trunk/debian/initscripts/lib/init

pere at alioth.debian.org pere at alioth.debian.org
Thu Dec 27 22:46:05 UTC 2007


Author: pere
Date: 2007-12-27 22:46:05 +0000 (Thu, 27 Dec 2007)
New Revision: 1143

Modified:
   sysvinit/trunk/debian/initscripts/lib/init/splash-functions-base
Log:
Minor whitespace cleanup.

Modified: sysvinit/trunk/debian/initscripts/lib/init/splash-functions-base
===================================================================
--- sysvinit/trunk/debian/initscripts/lib/init/splash-functions-base	2007-12-27 21:57:04 UTC (rev 1142)
+++ sysvinit/trunk/debian/initscripts/lib/init/splash-functions-base	2007-12-27 22:46:05 UTC (rev 1143)
@@ -16,16 +16,16 @@
 splash_running() { return 1; }
 
 # Tells the splash to quit
-splash_stop () { return 0; }
+splash_stop() { return 0; }
 
 # Tells the splash to start if not already running
-splash_start () { return 1; }
+splash_start() { return 1; }
 
 # Tells the splash the current boot/shutdown progress
 # $1 contains the progress as a percentage value between -100 and 100
 # Positive values indicate boot progress
 # Negative values indicate shutdown progress
-splash_progress ()
+splash_progress()
 {
 	local progress tmp
 	progress="$1"
@@ -64,16 +64,16 @@
 }
 
 # Customizations should replace this function instead of splash_progress above
-custom_splash_progress () { return 0; }
+custom_splash_progress() { return 0; }
 
 
 # Tells the splash that a task which may take an unknown amount of
 # time has started (such as a fsck). This is useful to make sure the
 # splash doesn't time out and to give visual feedback to the user.
-splash_start_indefinite () { return 0; }
+splash_start_indefinite() { return 0; }
 
 # Tells the splash that an indefinite task is done
-splash_stop_indefinite () { return 0; }
+splash_stop_indefinite() { return 0; }
 
 # Gets user input from a splash
 # $1 contains the text for the user prompt
@@ -86,7 +86,7 @@
 # Should be called with an alternative non-splash input fallback:
 #   INPUT="$(splash_user_input "Enter password:" password)" || \
 #   INPUT="$(manual_method)"
-splash_user_input () { return 1; }
+splash_user_input() { return 1; }
 
 # Allow these functions to be overridden with custom scripts.  This is
 # the official API hook.




More information about the Pkg-sysvinit-commits mailing list