[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force X.Org X11 SVN commit: r510 - trunk/debian



Author: branden
Date: 2005-08-08 11:25:39 -0500 (Mon, 08 Aug 2005)
New Revision: 510

Modified:
   trunk/debian/shell-lib.sh
Log:
Whitespace police.

End sentence with punctuation.


Modified: trunk/debian/shell-lib.sh
===================================================================
--- trunk/debian/shell-lib.sh	2005-08-08 16:19:12 UTC (rev 509)
+++ trunk/debian/shell-lib.sh	2005-08-08 16:25:39 UTC (rev 510)
@@ -556,7 +556,7 @@
   # validate arguments
   if [ $# -lt 3 ]; then
     usage_error "replace_conffile_with_symlink_prepare() called with wrong" \
-		" number of arguments; expected at least 3, got $#"
+                " number of arguments; expected at least 3, got $#"
     exit $SHELL_LIB_USAGE_ERROR
   fi
 
@@ -566,7 +566,7 @@
   shift
 
   remove_conffile_prepare "$_oldconffile" "$@"
-  # If $_oldconffile still exists, then md5sums didn't match. 
+  # If $_oldconffile still exists, then md5sums didn't match.
   # Copy it to new one.
   if [ -f "$_oldconffile" ]; then
     cp "$_oldconffile" "$_newconffile"
@@ -577,7 +577,7 @@
 replace_conffile_with_symlink_commit () {
   # syntax: replace_conffile_with_symlink_commit oldfilename
   #
-  # Complete the removal of a conffile "oldfilename" that has been 
+  # Complete the removal of a conffile "oldfilename" that has been
   # replaced by a symlink.
   #
   # Call this function from a postinst script after having used
@@ -588,7 +588,7 @@
   # validate arguments
   if [ $# -ne 1 ]; then
     usage_error "replace_conffile_with_symlink_commit() called with wrong" \
-		"number of arguments; expected 1, got $#"
+                "number of arguments; expected 1, got $#"
     exit $SHELL_LIB_USAGE_ERROR
   fi
 
@@ -601,13 +601,13 @@
   # syntax: replace_conffile_with_symlink_rollback oldfilename newfilename
   #
   # Roll back the replacing of a conffile "oldfilename" with symlink to
-  # "newfilename"
+  # "newfilename".
   #
   # Call this function from a postrm script in the event $1 is "abort-upgrade"
   # or "abort-install" and verify $2 to ensure the package failed to upgrade
-  # from a version (or install over a version removed-but-not-purged) prior 
+  # from a version (or install over a version removed-but-not-purged) prior
   # to the one in which the conffile was obsoleted.
-  # You should have  used replace_conffile_with_symlink_prepare() in the 
+  # You should have  used replace_conffile_with_symlink_prepare() in the
   # preinst.
 
   #local conffile
@@ -615,7 +615,7 @@
   # validate arguments
   if [ $# -ne 2 ]; then
     usage_error "replace_conffile_with_symlink_rollback() called with wrong" \
-		"number of arguments; expected 2, got $#"
+                "number of arguments; expected 2, got $#"
     exit $SHELL_LIB_USAGE_ERROR
   fi
 



Reply to: