[Initscripts-ng-commits] r999 - /trunk/src/insserv/debian/check-archive-initd-scripts

pere at users.alioth.debian.org pere at users.alioth.debian.org
Sat Sep 12 16:33:04 UTC 2009


Author: pere
Date: Sat Sep 12 16:33:03 2009
New Revision: 999

URL: http://svn.debian.org/wsvn/initscripts-ng/?sc=1&rev=999
Log:
Improve language.

Modified:
    trunk/src/insserv/debian/check-archive-initd-scripts

Modified: trunk/src/insserv/debian/check-archive-initd-scripts
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/src/insserv/debian/check-archive-initd-scripts?rev=999&op=diff
==============================================================================
--- trunk/src/insserv/debian/check-archive-initd-scripts (original)
+++ trunk/src/insserv/debian/check-archive-initd-scripts Sat Sep 12 16:33:03 2009
@@ -103,7 +103,7 @@
     }
 
     my $basename = basename($initdscript, ".sh");
-    warning("script $short do not provide its own name")
+    warning("script $short does not provide its own name")
         unless exists $provided{$basename};
 
     # Detect common problems with runlevel settings.
@@ -120,12 +120,12 @@
         # Most scripts either start in rcS.d, or in runlevels 2-5
         if (!array_equal(['2', '3', '4', '5'], \@startrl) &&
             !array_equal(['s'], \@startrl)) {
-            warning("script $short do not start in the usual runlevels");
+            warning("script $short does not start in the usual runlevels");
         }
         # And most scripts stop in runlevel 1 or runlevels 0, 1 and 6
         if (!array_equal(['0', '1', '6'], \@stoprl) &&
             !array_equal(['1'], \@stoprl)) {
-            warning("script $short do not stop in the usual runlevels");
+            warning("script $short does not stop in the usual runlevels");
         }
     }
 }




More information about the Initscripts-ng-commits mailing list