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

lintian: r345 - in trunk: checks debian



Author: jeroen
Date: 2004-10-13 00:18:48 +0200 (Wed, 13 Oct 2004)
New Revision: 345

Modified:
   trunk/checks/init.d
   trunk/debian/changelog
Log:
checks/init.d:
+ [JvW] Don't warn for missing init.d scripts in package and conffile list
  if a variable is used instead of a real name (Closes: #264218)


Modified: trunk/checks/init.d
===================================================================
--- trunk/checks/init.d	2004-10-12 22:02:04 UTC (rev 344)
+++ trunk/checks/init.d	2004-10-12 22:18:48 UTC (rev 345)
@@ -125,6 +125,7 @@
 }
 
 for (keys %initd_postinst) {
+    next if /^\$/;
     # init.d scripts have to be marked as conffiles
     unless ($conffiles{"/etc/init.d/$_"} or $conffiles{"etc/init.d/$_"}) {
 	tag "init.d-script-not-marked-as-conffile", "/etc/init.d/$_";
@@ -166,4 +167,4 @@
 
 1;
 
-# vim: syntax=perl
+# vim: syntax=perl ts=8

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-10-12 22:02:04 UTC (rev 344)
+++ trunk/debian/changelog	2004-10-12 22:18:48 UTC (rev 345)
@@ -13,6 +13,9 @@
   * checks/debconf:
     + [JvW] Don't warn when you're not translation choices of a debconf
       question, it might not make sense (Closes: #262649)
+  * checks/init.d:
+    + [JvW] Don't warn for missing init.d scripts in package and conffile list
+      if a variable is used instead of a real name (Closes: #264218)
   * checks/po-debconf:
     + [JvW] Don't give missing-file-from-potfile-in on empty lines
       (Thanks Adam Conrad for noticing)



Reply to: