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

[SCM] Debian package checker branch, master, updated. 2.3.4-2-g15444ca



The following commit has been merged in the master branch:
commit 15444ca5efbba1555206be16865b419121d69ffa
Author: Russ Allbery <rra@debian.org>
Date:   Tue Mar 23 17:39:06 2010 -0700

    Allow $all to satisfy $remote_fs for Required-Stop
    
    * checks/init.d:
      + [RA] Allow $all to satisfy a $remote_fs or $local_fs requirement for
        Required-Stop, since this has now been implemented.  Thanks, Michael
        Meskes.

diff --git a/checks/init.d b/checks/init.d
index ee69a93..e456308 100644
--- a/checks/init.d
+++ b/checks/init.d
@@ -383,13 +383,13 @@ sub check_init {
     if (defined $lsb{'default-stop'} && length($lsb{'default-stop'})) {
 	my @required = split(' ', $lsb{'required-stop'} || '');
 	if ($needs_fs{remote}) {
-	    unless (grep { /^(?:\$remote_fs|umountnfs)\z/ } @required) {
+	    unless (grep { /^(?:\$remote_fs|\$all|umountnfs)\z/ } @required) {
 		tag 'init.d-script-missing-dependency-on-remote_fs',
 		    "/etc/init.d/$_: required-stop";
 	    }
 	}
 	if ($needs_fs{local}) {
-	    unless (grep { /^(?:\$(?:local|remote)_fs|umountn?fs)\z/ } @required) {
+	    unless (grep { /^(?:\$(?:local|remote)_fs|\$all|umountn?fs)\z/ } @required) {
 		tag 'init.d-script-missing-dependency-on-local_fs',
 		    "/etc/init.d/$_: required-stop";
 	    }
diff --git a/debian/changelog b/debian/changelog
index 25b7ff7..1571fd4 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,10 @@ lintian (2.3.5) UNRELEASED; urgency=low
       package without a version, since diff was renamed to diffutils and
       depending on diffutils effectively is a versioned dependency.
       Thanks, Santiago Vila.  (Closes: #575073)
+  * checks/init.d:
+    + [RA] Allow $all to satisfy a $remote_fs or $local_fs requirement for
+      Required-Stop, since this has now been implemented.  Thanks, Michael
+      Meskes.
 
  -- Russ Allbery <rra@debian.org>  Tue, 23 Mar 2010 17:35:12 -0700
 

-- 
Debian package checker


Reply to: