[Pkg-sysvinit-commits] r1372 - in sysvinit/trunk/debian: . service
    Petter Reinholdtsen 
    pere at alioth.debian.org
       
    Mon Jul  6 15:56:04 UTC 2009
    
    
  
Author: pere
Date: 2009-07-06 15:56:03 +0000 (Mon, 06 Jul 2009)
New Revision: 1372
Modified:
   sysvinit/trunk/debian/changelog
   sysvinit/trunk/debian/service/service
Log:
Avoid bashism in service(8) (Closes: #535883).
Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog	2009-07-06 15:27:55 UTC (rev 1371)
+++ sysvinit/trunk/debian/changelog	2009-07-06 15:56:03 UTC (rev 1372)
@@ -12,6 +12,7 @@
   * Add improved progress bar during fsck when usplash is used, based
     on patch from Martin Pitt and Ubuntu.  Modified Ubuntu patch to
     keep the generic splash support when usplash is not used.
+  * Avoid bashism in service(8) (Closes: #535883).
 
  -- Petter Reinholdtsen <pere at debian.org>  Wed, 01 Jul 2009 20:04:20 +0200
 
Modified: sysvinit/trunk/debian/service/service
===================================================================
--- sysvinit/trunk/debian/service/service	2009-07-06 15:27:55 UTC (rev 1371)
+++ sysvinit/trunk/debian/service/service	2009-07-06 15:56:03 UTC (rev 1372)
@@ -115,6 +115,6 @@
 if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
    env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "$SERVICEDIR/$SERVICE" ${OPTIONS}
 else
-   echo $"${SERVICE}: unrecognized service" >&2
+   echo "${SERVICE}: unrecognized service" >&2
    exit 1
 fi
    
    
More information about the Pkg-sysvinit-commits
mailing list