[Initscripts-ng-commits] r349 - in /trunk/src/insserv/debian: changelog check-initd-order

pere at users.alioth.debian.org pere at users.alioth.debian.org
Sun Dec 30 13:47:52 UTC 2007


Author: pere
Date: Sun Dec 30 13:47:52 2007
New Revision: 349

URL: http://svn.debian.org/wsvn/initscripts-ng/?sc=1&rev=349
Log:
  * Update check-initd-order to use the same default dependencies as
    insserv ($remote_fs $syslog) when generating dotty graphs.

Modified:
    trunk/src/insserv/debian/changelog
    trunk/src/insserv/debian/check-initd-order

Modified: trunk/src/insserv/debian/changelog
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/src/insserv/debian/changelog?rev=349&op=diff
==============================================================================
--- trunk/src/insserv/debian/changelog (original)
+++ trunk/src/insserv/debian/changelog Sun Dec 30 13:47:52 2007
@@ -8,6 +8,8 @@
     easier to understand.
   * Minor cleanup in irqbalance and atd override file, only depend
     on $remote_fs, no need to also depend on $local_fs.
+  * Update check-initd-order to use the same default dependencies as
+    insserv ($remote_fs $syslog) when generating dotty graphs.
 
  -- Petter Reinholdtsen <pere at debian.org>  Sun, 30 Dec 2007 12:39:33 +0100
 

Modified: trunk/src/insserv/debian/check-initd-order
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/src/insserv/debian/check-initd-order?rev=349&op=diff
==============================================================================
--- trunk/src/insserv/debian/check-initd-order (original)
+++ trunk/src/insserv/debian/check-initd-order Sun Dec 30 13:47:52 2007
@@ -141,7 +141,9 @@
 
             unless (defined $lsbinforef) {
                 print STDERR "warning: LSB header missing in $rcbase/$rcdir/$script\n";
-                $lsbinforef = {'provides' => $script};
+                $lsbinforef = {'provides'       => $script,
+                               'required-start' => '$remote_fs $syslog',
+                               'required-stop'  => '$remote_fs $syslog'};
             }
             my %lsbinfo = %{$lsbinforef};
             graph_addnode %lsbinfo;




More information about the Initscripts-ng-commits mailing list