[Initscripts-ng-commits] r89 - in /trunk/www/soc2006-bootsystem: code/beforedate code/checkLSB2html code/final code/finalKey code/inicio code/inicioKey code/medio code/medioKey code/runcheckLSB2html code/updatepkg.pl code/updatepkg.sh lsblist.html lsblistKey.html

dvictoria-guest at users.alioth.debian.org dvictoria-guest at users.alioth.debian.org
Sat Jul 15 19:41:36 UTC 2006


Author: dvictoria-guest
Date: Sat Jul 15 19:41:35 2006
New Revision: 89

URL: http://svn.debian.org/wsvn/initscripts-ng/?sc=1&rev=89
Log:
lsb list modified to be updated automatically -- new scripts to create the relation between an init-script and a package for the webpage (updatepkg.sh and updatepkg.pl

Added:
    trunk/www/soc2006-bootsystem/code/beforedate
    trunk/www/soc2006-bootsystem/code/finalKey
    trunk/www/soc2006-bootsystem/code/inicioKey
    trunk/www/soc2006-bootsystem/code/medio
    trunk/www/soc2006-bootsystem/code/medioKey
    trunk/www/soc2006-bootsystem/code/updatepkg.pl   (with props)
    trunk/www/soc2006-bootsystem/code/updatepkg.sh   (with props)
Modified:
    trunk/www/soc2006-bootsystem/code/checkLSB2html
    trunk/www/soc2006-bootsystem/code/final
    trunk/www/soc2006-bootsystem/code/inicio
    trunk/www/soc2006-bootsystem/code/runcheckLSB2html
    trunk/www/soc2006-bootsystem/lsblist.html
    trunk/www/soc2006-bootsystem/lsblistKey.html

Added: trunk/www/soc2006-bootsystem/code/beforedate
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/beforedate?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/beforedate (added)
+++ trunk/www/soc2006-bootsystem/code/beforedate Sat Jul 15 19:41:35 2006
@@ -1,0 +1,53 @@
+</table>
+</td>
+
+<td valign=top>
+<table border=0>
+<caption><h3>Color legend</h3></caption>
+<tr>
+<td>
+<table class='pkg'>
+<tr class='red'>
+<td>&nbsp;</td>
+
+</tr>
+</table>
+</td>
+<td>
+<small>No LSB headers</small>
+</td>
+</tr>
+
+
+<tr>
+<td>
+<table class='pkg'>
+<tr class='yellow'>
+<td>&nbsp;</td>
+</tr>
+</table>
+</td>
+<td>
+<small>Missing LSB headers</small>
+
+</td>
+</tr>
+
+<tr>
+<td>
+<table class='pkg'>
+<tr class='green'>
+<td>&nbsp;</td>
+</tr>
+</table>
+</td>
+<td>
+<small>LSB compliance</small>
+</td>
+</tr>
+
+</tr>
+</table>
+
+</table>
+	<p />Last modified: 

Modified: trunk/www/soc2006-bootsystem/code/checkLSB2html
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/checkLSB2html?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/code/checkLSB2html (original)
+++ trunk/www/soc2006-bootsystem/code/checkLSB2html Sat Jul 15 19:41:35 2006
@@ -34,9 +34,9 @@
 use Getopt::Std;
 use File::Basename;
 
-#my $initdir = "/etc/init.d";
-#my $initdir = "/home/carlos/Academia/debian/soc2006-bootsystem/code/init.d";
-my $initdir = "/home/carlos/Academia/debian/init.d_for_web";
+#my $initdir = "/etc/";
+#my $initdir = "/home/carlos/Academia/debian/soc2006-bootsystem/code/";
+my $initdir = "/home/carlos/Academia/debian/";
 
 my $debug = 0;
 my $web = 0;
@@ -52,7 +52,7 @@
 
 
 sub checkLSB {
-	chdir "$initdir/.";
+	chdir "$initdir/init.d/.";
 	for my $script (<*>) {
 
 #   print "$script\n";
@@ -76,10 +76,14 @@
     
 #   open script and search for initial header.
 
+	next if ($script eq "README" || $script eq "installation-report" || $script eq "rc" || $script eq "rcS");
+
     open(FILE, "<$script") or die "Unable to read $script";
     my $found = 0;
     my ($start, $provides, $requiredstart, $requiredstop, $shouldstart, $shouldstop, $defaultstart, $defaultstop, $shortdescription, $description, $ending);
    my $bts=''; 
+   my $pkg='';
+   my $accept=0;
     while (<FILE>) {
 	chomp;
 	#print "Reading a line of $found\n";
@@ -139,22 +143,92 @@
 		$description=$1 if (m/^\# description:\s+(\S*.*\S+)\s*$/i);
 		$description="" unless ($description);
 		}
-
-	if (m/^\# X\-Debian\-BTS:/i){
-		$bts=$1 if (m/^\# X\-Debian\-BTS:\s+(\S*.*\S+)\s*$/i);
-		$bts="" unless ($bts);
-		}
-
-		#print "linea=$bts\n" if (defined $bts && $debug);
+	
+	if (-f "$initdir/initINFO.d/$script")
+		{
+			
+		chdir "$initdir/initINFO.d/.";
+		open(FILE2,"<$script") or die "Unable to read initINFO.d/$script";
+		while (<FILE2>) 
+			{
+			chomp;
+			if (m/^\# X\-Debian\-pkg:/i){
+				$pkg=$1 if (m/^\# X\-Debian\-pkg:\s+(\S*.*\S+)\s*$/i);
+				$pkg="" unless ($pkg);
+				}
+			}
+
+
+			
+		chdir "$initdir/init.d/.";
+		}
+
+# Check if there is a bug report
+	
+
+	if (-f "$initdir/initINFO.d/BugReports")
+		{
+		# The BugReports file is in the $mydir/initINFO.d directory and has 
+		# the following format:
+		# 
+		# script-name=report-number1;
+		# script-name2=report-number2;
+		#
+	
+		chdir "$initdir/initINFO.d/.";
+		open(FILE3,"<BugReports") or die "Unable to read initINFO.d/BugReports";
+		while (<FILE3>) 
+			{
+			chomp;
+			if (m/^$script=/i){
+				$bts=$1 if (m/^$script=(\S*.*\S+);\s*$/);
+				$bts="" unless ($bts);
+				}
+			
+			}
+
+
+			
+		chdir "$initdir/init.d/.";
+		}
+
+
+# Check if it should be accepted although it doesn't pass the acceptance filter.
+
+	if (-f "$initdir/initINFO.d/ManuallyAccepted")
+		{
+		# The ManuallyAccepted file is in the $mydir/initINFO.d directory and has 
+		# the following format:
+		# accept=script-name;
+		# accept=script-name2;
+		#
+		chdir "$initdir/initINFO.d/.";
+		open(FILE4,"<ManuallyAccepted") or die "Unable to read initINFO.d/ManuallyAccepted";
+		while (<FILE4>) 
+			{
+			chomp;
+			if (m/$script/i){
+				$accept=1 if (m/^accept=(\S*.*\S+);\s*$/);
+				}
+			
+			}
+
+
+			
+		chdir "$initdir/init.d/.";
+		}
+
 
 
 	}
+	
 	    unless ($found) {
 		print "LSB headers missing in $initdir/$script\n";
 	    	print "---------------------------------------\n";
 	
 		print STDERR "\<tr class=\'red\'\>\n" if $web;
 		print STDERR "\<td\>\<strong\>\<a name=$script\>\<a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
+		print STDERR "\<td\>$pkg\<\/td\>\n" if $web;
 		print STDERR "\<td\>none\<\/td\>\n" if $web;
 		print STDERR "\<td\>\<a class=\'contrast\' href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
 		print STDERR "\<\/tr\>\n" if $web;
@@ -164,6 +238,9 @@
 
 
 		}
+
+		print "accept= $accept\n";
+
 
 		print "\nProvides=$provides\n" if (defined $provides && $debug);
 		print "Required-Start=$requiredstart\n" if (defined $requiredstart && $debug);
@@ -177,24 +254,35 @@
 		
 	if ($defaultstart =~ /[06]/){
 		if ($provides && $requiredstart && $ending) {
-		print "LSB Compliance in $initdir/$script.\n\n";
-		print STDERR "\<tr class=\'green\'\>\n" if $web;
-		print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
-		print STDERR "\<td\>compliant\<\/td\>\n" if $web;
-		print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
-		print STDERR "\<\/tr\>\n" if $web;
+			print "LSB Compliance in $initdir/$script.\n\n";
+			print STDERR "\<tr class=\'green\'\>\n" if $web;
+			print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
+			print STDERR "\<td\>$pkg\<\/td\>\n" if $web;
+			print STDERR "\<td\>compliant\<\/td\>\n" if $web;
+			print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
+			print STDERR "\<\/tr\>\n" if $web;
 		} } 
 		elsif ($provides && $requiredstart && $requiredstop && $defaultstart && ($defaultstop || $defaultstop eq 0) && $ending) {
-		print "LSB Compliance in $initdir/$script.\n\n";
-		print STDERR "\<tr class=\'green\'\>\n" if $web;
-		print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
-		print STDERR "\<td\>compliant\<\/td\>\n" if $web;
-		print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
-		print STDERR "\<\/tr\>\n" if $web;
+			print "LSB Compliance in $initdir/$script.\n\n";
+			print STDERR "\<tr class=\'green\'\>\n" if $web;
+			print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
+			print STDERR "\<td\>$pkg\<\/td\>\n" if $web;
+			print STDERR "\<td\>compliant\<\/td\>\n" if $web;
+			print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
+			print STDERR "\<\/tr\>\n" if $web;
+		} elsif ($accept==1) {
+			print "LSB Compliance in $initdir/$script.\n\n";
+			print STDERR "\<tr class=\'green\'\>\n" if $web;
+			print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
+			print STDERR "\<td\>$pkg\<\/td\>\n" if $web;
+			print STDERR "\<td\>compliant\<\/td\>\n" if $web;
+			print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
+			print STDERR "\<\/tr\>\n" if $web;
 		} else {
 		print "Missing LSB headers in $initdir/$script.\n \n";
 		print STDERR "\<tr class=\'yellow\'\>\n" if $web;
 		print STDERR "\<td\>\<strong\><a name=$script><a href=lsblistKey.html#$script>$script</a></a>\<\/strong\>\<\/td\>\n" if $web;
+		print STDERR "\<td\>$pkg\<\/td\>\n" if $web;
 		print STDERR "\<td\>incomplete\<\/td\>\n" if $web;
 		print STDERR "\<td\>\<a href=http:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=$bts\>$bts\<\/a\>\<\/td\>\n" if $web;
 		print STDERR "\<\/tr\>\n" if $web;
@@ -241,6 +329,9 @@
 	print "------------------------------------------------\n";
     
     	close(FILE);
+	close(FILE2);
+	close(FILE3);
+	close(FILE4);
 
 
 

Modified: trunk/www/soc2006-bootsystem/code/final
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/final?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/code/final (original)
+++ trunk/www/soc2006-bootsystem/code/final Sat Jul 15 19:41:35 2006
@@ -1,56 +1,4 @@
-</table>
-</td>
-
-<td valign=top>
-<table border=0>
-<caption><h3>Color legend</h3></caption>
-<tr>
-<td>
-<table class='pkg'>
-<tr class='red'>
-<td>&nbsp;</td>
-
-</tr>
-</table>
-</td>
-<td>
-<small>No LSB headers</small>
-</td>
-</tr>
-
-
-<tr>
-<td>
-<table class='pkg'>
-<tr class='yellow'>
-<td>&nbsp;</td>
-</tr>
-</table>
-</td>
-<td>
-<small>Missing LSB headers</small>
-
-</td>
-</tr>
-
-<tr>
-<td>
-<table class='pkg'>
-<tr class='green'>
-<td>&nbsp;</td>
-</tr>
-</table>
-</td>
-<td>
-<small>LSB compliance</small>
-</td>
-</tr>
-
-</tr>
-</table>
-
-</table>
-	<p />Last modified: Sat Jul  8
+	</p>
 	<p /><small>Generated by a GPL licensed perl script 
 	written as part of the <b>Google Summer of Code 2006 Debian Project to <i>Improve the Debian boot process</i></b>.</small>
 

Added: trunk/www/soc2006-bootsystem/code/finalKey
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/finalKey?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/finalKey (added)
+++ trunk/www/soc2006-bootsystem/code/finalKey Sat Jul 15 19:41:35 2006
@@ -1,0 +1,24 @@
+	<p />Last modified: Sat Jul  8
+	<p /><small>Generated by a GPL licensed perl script 
+	written as part of the <b>Google Summer of Code 2006 Debian Project to <i>Improve the Debian boot process</i></b>.</small>
+
+</div>
+<!--	<hr /> -->
+	<div class="sub_links">
+			<a href="index.html"> About</a>  |
+			<a href="timetable.html"> Timetable</a> |  
+			<a href="deliverables.html"> Deliverables</a> |
+			<a href="http://bootdebian.blogspot.com"> blog</a> |
+	</div>
+	<div class="copyright">
+  Carlos Villegas |
+  Last Modified:
+  	Jun 6, 2006.
+		<br />
+		a design by <a href="http://oswd.org/userinfo.phtml?user=tezeuz">tezeuz</a> |
+		<a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a> |
+		<a href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS</a>
+	</div>
+</div>
+</body>
+</html>

Modified: trunk/www/soc2006-bootsystem/code/inicio
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/inicio?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/code/inicio (original)
+++ trunk/www/soc2006-bootsystem/code/inicio Sat Jul 15 19:41:35 2006
@@ -41,7 +41,7 @@
 <div class="content">
       	<h2>LSB-compliance list of Debian init-scripts</h2>
 
-<p>This is a list of the scripts in Debian Sid and their LSB-compliance to give runtime dependency information.<em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em><br>
+<p>This is a list of the scripts in Debian Sid and their LSB-compliance to give runtime dependency information. Currently it shows only the desktop task init-script subset.<em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em><br>
 <p><a href=lsblistKey.html>Go to list with header information of each init-script</a>
 
 <table border=0 cellspacing=10 cellpadding=5>
@@ -50,6 +50,7 @@
 <table class='pkg'>
 <caption><h3>Debian Init-Scripts Runtime Dependency Information</h3></caption>
 <tr class='title'>
+<TH />Script
 <TH />Package
 <TH />LSB Compliance
 <TH />Bug Report

Added: trunk/www/soc2006-bootsystem/code/inicioKey
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/inicioKey?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/inicioKey (added)
+++ trunk/www/soc2006-bootsystem/code/inicioKey Sat Jul 15 19:41:35 2006
@@ -1,0 +1,48 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<?xml-stylesheet href="sitewide.css" type="text/css"?>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
+<head>
+<meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-8859-1" />
+<meta name="author" content="Carlos Villegas"
+<link rel="stylesheet" type="text/css" href="sitewide.css" title="Debian" />
+<title>Improve the Debian boot process - SOC2006</title>
+</head>
+
+<body>
+<div class="container">
+<div class="menu">
+	<div class="center">
+	  <!img src="/images/soc2006.jpg" alt="ProjectDebianBoot" width="50" height="61" />
+	  <h2>&#187; <a href="http://wiki.debian.org/SummerOfCode2006">Improve Debian boot</a> &#171;</h2>
+	</div>
+	<p>
+	<b>google Summer of Code 2006</b><br>
+	Student:<a href=members.html>Carlos Villegas</a><br>
+	Mentor:<a href=members.html>Petter Reinholdtsen</a>
+	</p>
+	<h3>Project</h3>
+		<p>
+			<a href="index.html"> About</a><br />
+			<a href="timetable.html"> Timetable</a><br />
+			<a href="deliverables.html"> Deliverables</a><br />
+			<a href="proposal.html"> SOC Proposal</a><br />
+			<a href="resources.html"> Resources</a><br />
+			<a href="http://bootdebian.blogspot.com"> blog</a><br />
+			</p>
+	<h3>Related links</h3>
+		<p>
+			<a href="http://code.google.com/soc"> google Summer of Code</a><br />
+			<a href="http://wiki.debian.org/SummerOfCode2006">debian in the SOC</a><br />
+		</p>
+  	<p></p>
+	<a href="http://www.debian.org/"><img src="images/debian_banner.gif" alt="" /></a>
+</div>
+<div class="content">
+      	<h2>List of LSB headers in Debian init-scripts </h2>
+
+<p>This is a list of the scripts in Debian Sid and their LSB headers.  Currently it shows only the desktop task init-script subset. <em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em>
+
+<p><a href=lsblist.html>Go to table with LSB compliance information of each init-script</a>
+
+

Added: trunk/www/soc2006-bootsystem/code/medio
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/medio?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/medio (added)
+++ trunk/www/soc2006-bootsystem/code/medio Sat Jul 15 19:41:35 2006
@@ -1,0 +1,402 @@
+<tr class='red'>
+<td><strong><a name=acpid><a href=lsblistKey.html#acpid>acpid</a></a></strong></td>
+<td>acpid</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376778>376778</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=alsa><a href=lsblistKey.html#alsa>alsa</a></a></strong></td>
+<td>alsa-base</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=337638>337638</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=alsa-utils><a href=lsblistKey.html#alsa-utils>alsa-utils</a></a></strong></td>
+<td>alsa-utils</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=375388>375388</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=atd><a href=lsblistKey.html#atd>atd</a></a></strong></td>
+<td>at</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376780>376780</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=bittorrent><a href=lsblistKey.html#bittorrent>bittorrent</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376944>376944</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=bootclean><a href=lsblistKey.html#bootclean>bootclean</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=bootlogd><a href=lsblistKey.html#bootlogd>bootlogd</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=bootmisc.sh><a href=lsblistKey.html#bootmisc.sh>bootmisc.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=checkfs.sh><a href=lsblistKey.html#checkfs.sh>checkfs.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=checkroot.sh><a href=lsblistKey.html#checkroot.sh>checkroot.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=console-screen.sh><a href=lsblistKey.html#console-screen.sh>console-screen.sh</a></a></strong></td>
+<td>console-tools</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=cron><a href=lsblistKey.html#cron>cron</a></a></strong></td>
+<td>cron</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=dbus><a href=lsblistKey.html#dbus>dbus</a></a></strong></td>
+<td>dbus</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=dirmngr><a href=lsblistKey.html#dirmngr>dirmngr</a></a></strong></td>
+<td>dirmngr</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=exim4><a href=lsblistKey.html#exim4>exim4</a></a></strong></td>
+<td>exim4-base</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376953>376953</a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=gdm><a href=lsblistKey.html#gdm>gdm</a></a></strong></td>
+<td>gdm</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=glibc.sh><a href=lsblistKey.html#glibc.sh>glibc.sh</a></a></strong></td>
+<td>libc6</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=halt><a href=lsblistKey.html#halt>halt</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=hostname.sh><a href=lsblistKey.html#hostname.sh>hostname.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=hotkey-setup><a href=lsblistKey.html#hotkey-setup>hotkey-setup</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376955>376955</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=hwclock.sh><a href=lsblistKey.html#hwclock.sh>hwclock.sh</a></a></strong></td>
+<td>util-linux</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=hwclockfirst.sh><a href=lsblistKey.html#hwclockfirst.sh>hwclockfirst.sh</a></a></strong></td>
+<td>util-linux</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=ifupdown><a href=lsblistKey.html#ifupdown>ifupdown</a></a></strong></td>
+<td>ifupdown</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330230>330230</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=ifupdown-clean><a href=lsblistKey.html#ifupdown-clean>ifupdown-clean</a></a></strong></td>
+<td>ifupdown</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330230>330230</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=inetd><a href=lsblistKey.html#inetd>inetd</a></a></strong></td>
+<td>netkit-inetd</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376956>376956</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=kdm><a href=lsblistKey.html#kdm>kdm</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376958>376958</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=keymap.sh><a href=lsblistKey.html#keymap.sh>keymap.sh</a></a></strong></td>
+<td>console-common</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=killprocs><a href=lsblistKey.html#killprocs>killprocs</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=klogd><a href=lsblistKey.html#klogd>klogd</a></a></strong></td>
+<td>klogd</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324679>324679</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=libdevmapper1.02><a href=lsblistKey.html#libdevmapper1.02>libdevmapper1.02</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=361358>361358</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=lpd><a href=lsblistKey.html#lpd>lpd</a></a></strong></td>
+<td>lpr</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376960>376960</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=makedev><a href=lsblistKey.html#makedev>makedev</a></a></strong></td>
+<td>makedev</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376992>376992</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=module-init-tools><a href=lsblistKey.html#module-init-tools>module-init-tools</a></a></strong></td>
+<td>module-init-tools</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=module-init-tools_sarge><a href=lsblistKey.html#module-init-tools_sarge>module-init-tools_sarge</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=modutils><a href=lsblistKey.html#modutils>modutils</a></a></strong></td>
+<td>modutils</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=335311>335311</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountall-bootclean.sh><a href=lsblistKey.html#mountall-bootclean.sh>mountall-bootclean.sh</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountall.sh><a href=lsblistKey.html#mountall.sh>mountall.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountdevsubfs.sh><a href=lsblistKey.html#mountdevsubfs.sh>mountdevsubfs.sh</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountkernfs.sh><a href=lsblistKey.html#mountkernfs.sh>mountkernfs.sh</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountnfs-bootclean.sh><a href=lsblistKey.html#mountnfs-bootclean.sh>mountnfs-bootclean.sh</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mountnfs.sh><a href=lsblistKey.html#mountnfs.sh>mountnfs.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=mountvirtfs><a href=lsblistKey.html#mountvirtfs>mountvirtfs</a></a></strong></td>
+<td>initscripts</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=mtab.sh><a href=lsblistKey.html#mtab.sh>mtab.sh</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=networking><a href=lsblistKey.html#networking>networking</a></a></strong></td>
+<td>netbase</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=nfs-common><a href=lsblistKey.html#nfs-common>nfs-common</a></a></strong></td>
+<td>nfs-common</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376976>376976</a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=nviboot><a href=lsblistKey.html#nviboot>nviboot</a></a></strong></td>
+<td>nvi</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=portmap><a href=lsblistKey.html#portmap>portmap</a></a></strong></td>
+<td>portmap</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=pppd-dns><a href=lsblistKey.html#pppd-dns>pppd-dns</a></a></strong></td>
+<td>ppp</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=preload><a href=lsblistKey.html#preload>preload</a></a></strong></td>
+<td></td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=procps.sh><a href=lsblistKey.html#procps.sh>procps.sh</a></a></strong></td>
+<td>procps</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=reboot><a href=lsblistKey.html#reboot>reboot</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=rmnologin><a href=lsblistKey.html#rmnologin>rmnologin</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=single><a href=lsblistKey.html#single>single</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=skeleton><a href=lsblistKey.html#skeleton>skeleton</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=ssh><a href=lsblistKey.html#ssh>ssh</a></a></strong></td>
+<td>openssh-server</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=stop-bootlogd><a href=lsblistKey.html#stop-bootlogd>stop-bootlogd</a></a></strong></td>
+<td>initscripts</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=stop-bootlogd-single><a href=lsblistKey.html#stop-bootlogd-single>stop-bootlogd-single</a></a></strong></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=stop-readahead><a href=lsblistKey.html#stop-readahead>stop-readahead</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=sudo><a href=lsblistKey.html#sudo>sudo</a></a></strong></td>
+<td>sudo</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=sysklogd><a href=lsblistKey.html#sysklogd>sysklogd</a></a></strong></td>
+<td>sysklogd</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324679>324679</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=udev><a href=lsblistKey.html#udev>udev</a></a></strong></td>
+<td>udev</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=375389>375389</a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=udev-mtab><a href=lsblistKey.html#udev-mtab>udev-mtab</a></a></strong></td>
+<td>udev</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=umountfs><a href=lsblistKey.html#umountfs>umountfs</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=umountnfs.sh><a href=lsblistKey.html#umountnfs.sh>umountnfs.sh</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=umountroot><a href=lsblistKey.html#umountroot>umountroot</a></a></strong></td>
+<td></td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
+<td><strong><a name=urandom><a href=lsblistKey.html#urandom>urandom</a></a></strong></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='yellow'>
+<td><strong><a name=x11-common><a href=lsblistKey.html#x11-common>x11-common</a></a></strong></td>
+<td>x11-common</td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>

Added: trunk/www/soc2006-bootsystem/code/medioKey
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/medioKey?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/medioKey (added)
+++ trunk/www/soc2006-bootsystem/code/medioKey Sat Jul 15 19:41:35 2006
@@ -1,0 +1,782 @@
+<h3><a name=alsa><a href=lsblist.html#alsa> alsa</a></a> </h3>
+<p>Required-Start=<br>
+Required-Stop=<br>
+Default-Start=<br>
+Default-Stop=<br>
+Short-Description=Script to unload and load ALSA modules<br>
+</p>
+<p><small>
+NOTES:<br>
+Provides LSB header missing.<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Start LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=alsa-utils><a href=lsblist.html#alsa-utils> alsa-utils</a></a> </h3>
+<p>Required-Start=mountall<br>
+Default-Start=S<br>
+Short-Description=Restore and store ALSA driver settings<br>
+</p>
+<p><small>
+NOTES:<br>
+Provides LSB header missing.<br>
+Required-Stop LSB header missing.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=bootlogd><a href=lsblist.html#bootlogd> bootlogd</a></a> </h3>
+<p>
+Provides=bootlogd<br>
+Required-Start=mountdevsubfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Start or stop bootlogd.<br>
+Description=Starts or stops the bootlogd log program<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=bootmisc.sh><a href=lsblist.html#bootmisc.sh> bootmisc.sh</a></a> </h3>
+<p>
+Provides=bootmisc<br>
+Required-Start=$local_fs hostname $remote_fs<br>
+Required-Stop=$local_fs<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Miscellaneous things to be done during bootup.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=checkfs.sh><a href=lsblist.html#checkfs.sh> checkfs.sh</a></a> </h3>
+<p>
+Provides=checkfs<br>
+Required-Start=modutils checkroot<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=lvm cryptdisks<br>
+Should-Stop=<br>
+Short-Description=Check all filesystems.<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=checkroot.sh><a href=lsblist.html#checkroot.sh> checkroot.sh</a></a> </h3>
+<p>
+Provides=checkroot<br>
+Required-Start=mountdevsubfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=keymap hwclockfirst<br>
+Should-Stop=<br>
+Short-Description=Check to root file system.<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=console-screen.sh><a href=lsblist.html#console-screen.sh> console-screen.sh</a></a> </h3>
+<p>
+Provides=console-screen<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=$local_fs $remote_fs<br>
+Default-Start=S 2 3 4 5<br>
+Default-Stop=0 1 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=cron><a href=lsblist.html#cron> cron</a></a> </h3>
+<p>
+Provides=cron<br>
+Required-Start=$syslog $time<br>
+Required-Stop=$syslog $time<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=S 0 1 6<br>
+Short-Description=Regular background program processing daemon<br>
+Description=cron is a standard UNIX program that runs user-specified<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=dbus><a href=lsblist.html#dbus> dbus</a></a> </h3>
+<p>
+Provides=dbus<br>
+Required-Start=$local_fs $syslog<br>
+Required-Stop=$local_fs $syslog<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=S 0 1 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=dirmngr><a href=lsblist.html#dirmngr> dirmngr</a></a> </h3>
+<p>
+Provides=dirmngr<br>
+Required-Start=$local_fs<br>
+Required-Stop=$local_fs<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=S 0 1 6<br>
+Short-Description=start DirMngr daemon<br>
+Description=DirMngr is a server for managing and downloading certificate<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=gdm><a href=lsblist.html#gdm> gdm</a></a> </h3>
+<p>
+Provides=x-display-manager gdm<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=$local_fs $remote_fs<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=S 0 1 6<br>
+Should-Start=console-screen<br>
+Short-Description=GNOME Display Manager<br>
+Description=Debian init script for the GNOME Display Manager<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=glibc.sh><a href=lsblist.html#glibc.sh> glibc.sh</a></a> </h3>
+<p>
+Provides=glibc<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=halt><a href=lsblist.html#halt> halt</a></a> </h3>
+<p>
+Provides=halt<br>
+Required-Start=umountroot<br>
+Required-Stop=<br>
+Default-Start=0<br>
+Default-Stop=<br>
+Should-Start=lvm raid2<br>
+Should-Stop=<br>
+Short-Description=Execute the halt command.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=hostname.sh><a href=lsblist.html#hostname.sh> hostname.sh</a></a> </h3>
+<p>
+Provides=hostname<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Set hostname.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=keymap.sh><a href=lsblist.html#keymap.sh> keymap.sh</a></a> </h3>
+<p>
+Provides=keymap<br>
+Required-Start=mountvirtfs<br>
+Required-Stop=<br>
+Default-Start=S 2 3 4 5<br>
+Default-Stop=0 1 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=killprocs><a href=lsblist.html#killprocs> killprocs</a></a> </h3>
+<p>
+Provides=killprocs<br>
+Required-Start=$local_fs<br>
+Required-Stop=<br>
+Default-Start=1<br>
+Default-Stop=<br>
+Short-Description=executed by init(8) upon entering runlevel 1 (single).<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=makedev><a href=lsblist.html#makedev> makedev</a></a> </h3>
+<p>Required-Start=$local_fs<br>
+Required-Stop=$local_fs<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=0 1 6<br>
+Short-Description=Creates device files in /dev<br>
+</p>
+<p><small>
+NOTES:<br>
+Provides LSB header missing.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=module-init-tools><a href=lsblist.html#module-init-tools> module-init-tools</a></a> </h3>
+<p>
+Provides=module-init-tools<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=checkroot<br>
+Should-Stop=<br>
+Short-Description=Process /etc/modules.<br>
+Description=Load the modules listed in /etc/modules.<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=module-init-tools_sarge><a href=lsblist.html#module-init-tools_sarge> module-init-tools_sarge</a></a> </h3>
+<p>
+Provides=module-init-tools<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=checkroot<br>
+Should-Stop=<br>
+Short-Description=Run depmod -a and process /etc/modules.<br>
+Description=Update the modules dependencies database and<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mountall-bootclean.sh><a href=lsblist.html#mountall-bootclean.sh> mountall-bootclean.sh</a></a> </h3>
+<p>
+Provides=mountall-bootclean<br>
+Required-Start=mountall<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=bootclean after mountall.<br>
+Description=Clean temporary filesystems after<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mountall.sh><a href=lsblist.html#mountall.sh> mountall.sh</a></a> </h3>
+<p>
+Provides=mountall<br>
+Required-Start=checkfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=lvm<br>
+Should-Stop=<br>
+Short-Description=Mount all filesystems.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header has no arguments.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=mountdevsubfs.sh><a href=lsblist.html#mountdevsubfs.sh> mountdevsubfs.sh</a></a> </h3>
+<p>
+Provides=mountdevsubfs mountvirtfs<br>
+Required-Start=mountkernfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Mount special file systems under /dev.<br>
+Description=Mount the virtual filesystems the kernel provides<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mountkernfs.sh><a href=lsblist.html#mountkernfs.sh> mountkernfs.sh</a></a> </h3>
+<p>
+Provides=mountkernfs<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Mount kernel virtual file systems.<br>
+Description=Mount initial set of virtual filesystems the kernel<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mountnfs-bootclean.sh><a href=lsblist.html#mountnfs-bootclean.sh> mountnfs-bootclean.sh</a></a> </h3>
+<p>
+Provides=mountnfs-bootclean<br>
+Required-Start=mountnfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=bootclean after mountnfs.<br>
+Description=Clean temporary filesystems after<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mountnfs.sh><a href=lsblist.html#mountnfs.sh> mountnfs.sh</a></a> </h3>
+<p>
+Provides=mountnfs<br>
+Required-Start=$network $local_fs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Mount network file systems.<br>
+Description=Now that TCP/IP is configured, mount the NFS file<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=mtab.sh><a href=lsblist.html#mtab.sh> mtab.sh</a></a> </h3>
+<p>
+Provides=mtab<br>
+Required-Start=mountall<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Update mtab file.<br>
+Description=Update the mount program's mtab file after<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=networking><a href=lsblist.html#networking> networking</a></a> </h3>
+<p>
+Provides=networking<br>
+Required-Start=mountvirtfs ifupdown $local_fs<br>
+Default-Start=S<br>
+Default-Stop=0 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header missing.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=nfs-common><a href=lsblist.html#nfs-common> nfs-common</a></a> </h3>
+<p>
+Provides=nfs-common<br>
+Required-Start=$time<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=0 1 6<br>
+Short-Description=NFS support files common to client and server<br>
+Description=NFS is a popular protocol for file sharing across<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header missing.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=portmap><a href=lsblist.html#portmap> portmap</a></a> </h3>
+<p>
+Provides=portmap<br>
+Required-Start=$network<br>
+Required-Stop=$network<br>
+Default-Start=S 2 3 4 5<br>
+Default-Stop=0 1 6<br>
+Should-Start=$named<br>
+Should-Stop=$named<br>
+</p>
+<p><small>
+NOTES:<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=pppd-dns><a href=lsblist.html#pppd-dns> pppd-dns</a></a> </h3>
+<p>Required-Start=$local_fs<br>
+Default-Start=S<br>
+</p>
+<p><small>
+NOTES:<br>
+Provides LSB header missing.<br>
+Required-Stop LSB header missing.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=preload><a href=lsblist.html#preload> preload</a></a> </h3>
+<p>
+Provides=preload.sourceforge.net<br>
+Required-Start=$local_fs $remote_fs $time<br>
+Required-Stop=$local_fs $remote_fs $time<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=0 1 6<br>
+Short-Description=Adaptive readahead daemon<br>
+Description=Analyzes what applications users run and tries to predict<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=procps.sh><a href=lsblist.html#procps.sh> procps.sh</a></a> </h3>
+<p>
+Provides=procps<br>
+Required-Start=mountvirtfs<br>
+Required-Stop=<br>
+Default-Start=S 1 2 3 4 5<br>
+Default-Stop=0 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=reboot><a href=lsblist.html#reboot> reboot</a></a> </h3>
+<p>
+Provides=reboot<br>
+Required-Start=umountroot $network<br>
+Required-Stop=<br>
+Default-Start=6<br>
+Default-Stop=<br>
+Should-Start=lvm raid2<br>
+Short-Description=Execute the reboot command.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=rmnologin><a href=lsblist.html#rmnologin> rmnologin</a></a> </h3>
+<p>
+Provides=rmnologin<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=<br>
+Default-Start=0 1 2 3 4 5 6<br>
+Default-Stop=<br>
+Should-Start=kdm xdm gdm $syslog<br>
+Short-Description=Remove /etc/nologin at boot<br>
+Description=This script removes the /etc/nologin file as the<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=sendsigs><a href=lsblist.html#sendsigs> sendsigs</a></a> </h3>
+<p>
+Provides=sendsigs<br>
+Required-Start=<br>
+Required-Stop=<br>
+Default-Start=6<br>
+Default-Stop=<br>
+Short-Description=Kill all remaining processes.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-start LSB header has no arguments.<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=single><a href=lsblist.html#single> single</a></a> </h3>
+<p>
+Provides=single<br>
+Required-Start=$local_fs killprocs<br>
+Required-Stop=<br>
+Default-Start=1<br>
+Default-Stop=<br>
+Short-Description=executed by init(8) upon entering runlevel 1 (single).<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=skeleton><a href=lsblist.html#skeleton> skeleton</a></a> </h3>
+<p>
+Provides=skeleton<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=$local_fs $remote_fs<br>
+Default-Start=2 3 4 5<br>
+Default-Stop=S 0 1 6<br>
+Short-Description=Example initscript<br>
+Description=This file should be used to construct scripts to be<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+</small></p>
+<h3><a name=stop-bootlogd><a href=lsblist.html#stop-bootlogd> stop-bootlogd</a></a> </h3>
+<p>
+Provides=stop-bootlogd<br>
+Required-Start=$remote_fs<br>
+Required-Stop=<br>
+Default-Start=1 2 3 4 5<br>
+Default-Stop=<br>
+Short-Description=Stop bootlogd<br>
+Description=See the bootlogd script<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=stop-bootlogd-single><a href=lsblist.html#stop-bootlogd-single> stop-bootlogd-single</a></a> </h3>
+<p>
+Provides=stop-bootlogd-single<br>
+Required-Start=$remote_fs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Stop bootlogd in single user mode<br>
+Description=See the bootlogd script<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=sudo><a href=lsblist.html#sudo> sudo</a></a> </h3>
+<p>
+Provides=sudo<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=<br>
+Default-Start=S 2 3 4 5<br>
+Default-Stop=0 1 6<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=udev><a href=lsblist.html#udev> udev</a></a> </h3>
+<p>
+Provides=udev<br>
+Required-Start=mountvirtfs<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Start udevd, populate /dev and load drivers.<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=udev-mtab><a href=lsblist.html#udev-mtab> udev-mtab</a></a> </h3>
+<p>
+Provides=udev-mtab<br>
+Required-Start=udev checkroot<br>
+Required-Stop=<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Short-Description=Add to mtab the entries for /dev and /dev/.static/dev.<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=umountfs><a href=lsblist.html#umountfs> umountfs</a></a> </h3>
+<p>
+Provides=umountfs<br>
+Required-Start=umountnfs urandom<br>
+Required-Stop=<br>
+Default-Start=0 6<br>
+Default-Stop=<br>
+Short-Description=Turn off swap and unmount all local file systems.<br>
+Description=<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header is empty.<br>
+</small></p>
+<h3><a name=umountnfs.sh><a href=lsblist.html#umountnfs.sh> umountnfs.sh</a></a> </h3>
+<p>
+Provides=umountnfs<br>
+Required-Start=sendsigs<br>
+Required-Stop=<br>
+Default-Start=6<br>
+Default-Stop=<br>
+Short-Description=Unmount all network filesystems except the root file system.<br>
+Description=Also unmounts all virtual filesystems (proc, devfs, devpts,<br>
+</p>
+<p><small>
+NOTES:<br>
+Required-Stop LSB header has no arguments.<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+</small></p>
+<h3><a name=umountroot><a href=lsblist.html#umountroot> umountroot</a></a> </h3>
+<p>
+Provides=umountroot<br>
+Required-Start=umountfs<br>
+Required-Stop=umountfs<br>
+Default-Start=6<br>
+Default-Stop=<br>
+Short-Description=Mount the root filesystem read-only.<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Default-Stop LSB header has no arguments.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=urandom><a href=lsblist.html#urandom> urandom</a></a> </h3>
+<p>
+Provides=urandom<br>
+Required-Start=$local_fs<br>
+Required-Stop=$local_fs<br>
+Default-Start=S<br>
+Default-Stop=0 6<br>
+Short-Description=Save and restore random seed between restarts.<br>
+</p>
+<p><small>
+NOTES:<br>
+Should-Start LSB header missing.<br>
+Should-Stop LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>
+<h3><a name=x11-common><a href=lsblist.html#x11-common> x11-common</a></a> </h3>
+<p>
+Provides=x11-common<br>
+Required-Start=$local_fs $remote_fs<br>
+Required-Stop=$local_fs $remote_fs<br>
+Default-Start=S<br>
+Default-Stop=<br>
+Should-Start=$named<br>
+Should-Stop=$named<br>
+</p>
+<p><small>
+NOTES:<br>
+Default-Stop LSB header has no arguments.<br>
+Short-Description LSB header missing.<br>
+Description LSB header missing.<br>
+</small></p>

Modified: trunk/www/soc2006-bootsystem/code/runcheckLSB2html
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/runcheckLSB2html?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/code/runcheckLSB2html (original)
+++ trunk/www/soc2006-bootsystem/code/runcheckLSB2html Sat Jul 15 19:41:35 2006
@@ -16,14 +16,17 @@
 # To see the found LSB header information add -g, e.g. >>checkLSB -d
 # To make a webpage run >>runcheckLSB2html
 
+# Bugs are written in a file called ReportedBugs in the initINFO.d directory.
 
-
+./updatepkg.sh  # fills the directory /etc/initINFO.d/ with pkg name information
 
 ./checkLSB2html -h -d 2>medio;
 
 
 	cat inicio > ../lsblist.html;
 	cat medio >> ../lsblist.html;
+	cat beforedate >> ../lsblist.html;
+	echo `date +%A%t%b%t%d,%t%G` >> ../lsblist.html;
 	cat final >> ../lsblist.html;
 
 ./checkLSB2htmlKeywords -d 2>medioKey;

Added: trunk/www/soc2006-bootsystem/code/updatepkg.pl
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/updatepkg.pl?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/updatepkg.pl (added)
+++ trunk/www/soc2006-bootsystem/code/updatepkg.pl Sat Jul 15 19:41:35 2006
@@ -1,0 +1,29 @@
+#!/usr/bin/perl
+# Copyright (C) 2006 Carlos Villegas and Petter Reinholdtsen
+# Full notice of GPL license can be found in the main 
+# project file: checkLSB.
+
+# Author: Petter Reinholdtsen
+# Author: Carlos Villegas
+# Created:   2006-06-26
+# Last updated: 2006-07-08
+#
+# Outputs the name of the package of an init-script as an LSB header to the standard output. Auxiliary script for updatepkg.pl.
+#
+# To get the output run: ./updatepkg.pl `dpkg -S /etc/init.d/script-name`
+# where script-name is the name of the init-script.
+
+
+use strict;
+use warnings;
+use File::Basename;
+
+my $pkgname;
+
+if  ($ARGV[0]=~m/^(.+):\s+\/etc\/.*$/){
+	$pkgname=$1 if ($ARGV[0]=~m/^(.+):\s+\/etc\/.*$/);
+	print "\# X-Debian-pkg: $pkgname\n";
+	}
+	else {
+	print "";
+	}

Propchange: trunk/www/soc2006-bootsystem/code/updatepkg.pl
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/www/soc2006-bootsystem/code/updatepkg.sh
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/code/updatepkg.sh?rev=89&op=file
==============================================================================
--- trunk/www/soc2006-bootsystem/code/updatepkg.sh (added)
+++ trunk/www/soc2006-bootsystem/code/updatepkg.sh Sat Jul 15 19:41:35 2006
@@ -1,0 +1,30 @@
+#!/bin/bash
+# Copyright (C) 2006 Carlos Villegas and Petter Reinholdtsen
+# Full notice of GPL license can be found in the main 
+# project file: checkLSB.
+
+# Author: Petter Reinholdtsen
+# Author: Carlos Villegas
+# Created:   2006-07-15
+#
+# Creates directory used to get package name information for the list 
+# of LSB-compliance. Should be run every time the system is updated.
+#
+# To run independently the output run: ./updatepkg.sh
+# You need to have a directory called init.d in $mydir containing the 
+# controlled init scripts and another one called initINFO.d where the 
+# package information will be added.
+
+
+#mydir=/home/carlos/Academia/debian/soc2006-bootsystem/code
+mydir=/home/carlos/Academia/debian
+
+for myfile in "$mydir/init.d/"*
+do
+#	echo "$myfile"
+      script=`basename $myfile`;
+#      echo "Package of /etc/init.d/$script is:";
+      
+      ./updatepkg.pl "`dpkg -S /etc/init.d/$script`" > "$mydir/initINFO.d/$script";
+      
+done

Propchange: trunk/www/soc2006-bootsystem/code/updatepkg.sh
------------------------------------------------------------------------------
    svn:executable = *

Modified: trunk/www/soc2006-bootsystem/lsblist.html
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/lsblist.html?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/lsblist.html (original)
+++ trunk/www/soc2006-bootsystem/lsblist.html Sat Jul 15 19:41:35 2006
@@ -41,7 +41,7 @@
 <div class="content">
       	<h2>LSB-compliance list of Debian init-scripts</h2>
 
-<p>This is a list of the scripts in Debian Sid and their LSB-compliance to give runtime dependency information.<em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em><br>
+<p>This is a list of the scripts in Debian Sid and their LSB-compliance to give runtime dependency information. Currently it shows only the desktop task init-script subset.<em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em><br>
 <p><a href=lsblistKey.html>Go to list with header information of each init-script</a>
 
 <table border=0 cellspacing=10 cellpadding=5>
@@ -50,6 +50,7 @@
 <table class='pkg'>
 <caption><h3>Debian Init-Scripts Runtime Dependency Information</h3></caption>
 <tr class='title'>
+<TH />Script
 <TH />Package
 <TH />LSB Compliance
 <TH />Bug Report
@@ -57,331 +58,403 @@
 
 <tr class='red'>
 <td><strong><a name=acpid><a href=lsblistKey.html#acpid>acpid</a></a></strong></td>
+<td>acpid</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376778>376778</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=alsa><a href=lsblistKey.html#alsa>alsa</a></a></strong></td>
+<td>alsa-base</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=337638>337638</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=alsa-utils><a href=lsblistKey.html#alsa-utils>alsa-utils</a></a></strong></td>
+<td>alsa-utils</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=375388>375388</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=atd><a href=lsblistKey.html#atd>atd</a></a></strong></td>
+<td>at</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376780>376780</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=bittorrent><a href=lsblistKey.html#bittorrent>bittorrent</a></a></strong></td>
+<td></td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376944>376944</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=bootclean><a href=lsblistKey.html#bootclean>bootclean</a></a></strong></td>
-<td>none</td>
-<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
-</tr>
-<tr class='yellow'>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
 <td><strong><a name=bootlogd><a href=lsblistKey.html#bootlogd>bootlogd</a></a></strong></td>
-<td>incomplete</td>
+<td>initscripts</td>
+<td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=bootmisc.sh><a href=lsblistKey.html#bootmisc.sh>bootmisc.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=checkfs.sh><a href=lsblistKey.html#checkfs.sh>checkfs.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=checkroot.sh><a href=lsblistKey.html#checkroot.sh>checkroot.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=console-screen.sh><a href=lsblistKey.html#console-screen.sh>console-screen.sh</a></a></strong></td>
+<td>console-tools</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=cron><a href=lsblistKey.html#cron>cron</a></a></strong></td>
+<td>cron</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=dbus><a href=lsblistKey.html#dbus>dbus</a></a></strong></td>
+<td>dbus</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=dirmngr><a href=lsblistKey.html#dirmngr>dirmngr</a></a></strong></td>
+<td>dirmngr</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=exim4><a href=lsblistKey.html#exim4>exim4</a></a></strong></td>
+<td>exim4-base</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376953>376953</a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=gdm><a href=lsblistKey.html#gdm>gdm</a></a></strong></td>
+<td>gdm</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=glibc.sh><a href=lsblistKey.html#glibc.sh>glibc.sh</a></a></strong></td>
+<td>libc6</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=halt><a href=lsblistKey.html#halt>halt</a></a></strong></td>
-<td>compliant</td>
-<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
-</tr>
-<tr class='yellow'>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='green'>
 <td><strong><a name=hostname.sh><a href=lsblistKey.html#hostname.sh>hostname.sh</a></a></strong></td>
-<td>incomplete</td>
+<td>initscripts</td>
+<td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=hotkey-setup><a href=lsblistKey.html#hotkey-setup>hotkey-setup</a></a></strong></td>
+<td></td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376955>376955</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=hwclock.sh><a href=lsblistKey.html#hwclock.sh>hwclock.sh</a></a></strong></td>
+<td>util-linux</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=hwclockfirst.sh><a href=lsblistKey.html#hwclockfirst.sh>hwclockfirst.sh</a></a></strong></td>
+<td>util-linux</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=ifupdown><a href=lsblistKey.html#ifupdown>ifupdown</a></a></strong></td>
+<td>ifupdown</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330230>330230</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=ifupdown-clean><a href=lsblistKey.html#ifupdown-clean>ifupdown-clean</a></a></strong></td>
+<td>ifupdown</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330230>330230</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=inetd><a href=lsblistKey.html#inetd>inetd</a></a></strong></td>
+<td>netkit-inetd</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376956>376956</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=kdm><a href=lsblistKey.html#kdm>kdm</a></a></strong></td>
+<td></td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376958>376958</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=keymap.sh><a href=lsblistKey.html#keymap.sh>keymap.sh</a></a></strong></td>
+<td>console-common</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=killprocs><a href=lsblistKey.html#killprocs>killprocs</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=klogd><a href=lsblistKey.html#klogd>klogd</a></a></strong></td>
+<td>klogd</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324679>324679</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=libdevmapper1.02><a href=lsblistKey.html#libdevmapper1.02>libdevmapper1.02</a></a></strong></td>
+<td></td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=361358>361358</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=lpd><a href=lsblistKey.html#lpd>lpd</a></a></strong></td>
+<td>lpr</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376960>376960</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=makedev><a href=lsblistKey.html#makedev>makedev</a></a></strong></td>
+<td>makedev</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376992>376992</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=module-init-tools><a href=lsblistKey.html#module-init-tools>module-init-tools</a></a></strong></td>
+<td>module-init-tools</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=module-init-tools_sarge><a href=lsblistKey.html#module-init-tools_sarge>module-init-tools_sarge</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=modutils><a href=lsblistKey.html#modutils>modutils</a></a></strong></td>
+<td>modutils</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=335311>335311</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountall-bootclean.sh><a href=lsblistKey.html#mountall-bootclean.sh>mountall-bootclean.sh</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountall.sh><a href=lsblistKey.html#mountall.sh>mountall.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountdevsubfs.sh><a href=lsblistKey.html#mountdevsubfs.sh>mountdevsubfs.sh</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountkernfs.sh><a href=lsblistKey.html#mountkernfs.sh>mountkernfs.sh</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountnfs-bootclean.sh><a href=lsblistKey.html#mountnfs-bootclean.sh>mountnfs-bootclean.sh</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mountnfs.sh><a href=lsblistKey.html#mountnfs.sh>mountnfs.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=mountvirtfs><a href=lsblistKey.html#mountvirtfs>mountvirtfs</a></a></strong></td>
+<td>initscripts</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=mtab.sh><a href=lsblistKey.html#mtab.sh>mtab.sh</a></a></strong></td>
+<td></td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=networking><a href=lsblistKey.html#networking>networking</a></a></strong></td>
+<td>netbase</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=nfs-common><a href=lsblistKey.html#nfs-common>nfs-common</a></a></strong></td>
+<td>nfs-common</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376976>376976</a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=nviboot><a href=lsblistKey.html#nviboot>nviboot</a></a></strong></td>
+<td>nvi</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=portmap><a href=lsblistKey.html#portmap>portmap</a></a></strong></td>
-<td>compliant</td>
-<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
-</tr>
-<tr class='red'>
-<td><strong><a name=ppp><a href=lsblistKey.html#ppp>ppp</a></a></strong></td>
-<td>none</td>
-<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+<td>portmap</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=pppd-dns><a href=lsblistKey.html#pppd-dns>pppd-dns</a></a></strong></td>
+<td>ppp</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=preload><a href=lsblistKey.html#preload>preload</a></a></strong></td>
+<td></td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=procps.sh><a href=lsblistKey.html#procps.sh>procps.sh</a></a></strong></td>
+<td>procps</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=reboot><a href=lsblistKey.html#reboot>reboot</a></a></strong></td>
+<td>initscripts</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=rmnologin><a href=lsblistKey.html#rmnologin>rmnologin</a></a></strong></td>
+<td>initscripts</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=single><a href=lsblistKey.html#single>single</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=skeleton><a href=lsblistKey.html#skeleton>skeleton</a></a></strong></td>
-<td>compliant</td>
-<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+<td>initscripts</td>
+<td>compliant</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=ssh><a href=lsblistKey.html#ssh>ssh</a></a></strong></td>
+<td>openssh-server</td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=stop-bootlogd><a href=lsblistKey.html#stop-bootlogd>stop-bootlogd</a></a></strong></td>
+<td>initscripts</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=stop-bootlogd-single><a href=lsblistKey.html#stop-bootlogd-single>stop-bootlogd-single</a></a></strong></td>
-<td>incomplete</td>
-<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+<td></td>
+<td>incomplete</td>
+<td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
+</tr>
+<tr class='red'>
+<td><strong><a name=stop-readahead><a href=lsblistKey.html#stop-readahead>stop-readahead</a></a></strong></td>
+<td></td>
+<td>none</td>
+<td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=sudo><a href=lsblistKey.html#sudo>sudo</a></a></strong></td>
+<td>sudo</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='red'>
 <td><strong><a name=sysklogd><a href=lsblistKey.html#sysklogd>sysklogd</a></a></strong></td>
+<td>sysklogd</td>
 <td>none</td>
 <td><a class='contrast' href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324679>324679</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=udev><a href=lsblistKey.html#udev>udev</a></a></strong></td>
+<td>udev</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=375389>375389</a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=udev-mtab><a href=lsblistKey.html#udev-mtab>udev-mtab</a></a></strong></td>
+<td>udev</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=umountfs><a href=lsblistKey.html#umountfs>umountfs</a></a></strong></td>
+<td>initscripts</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=umountnfs.sh><a href=lsblistKey.html#umountnfs.sh>umountnfs.sh</a></a></strong></td>
+<td>initscripts</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=umountroot><a href=lsblistKey.html#umountroot>umountroot</a></a></strong></td>
+<td></td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='green'>
 <td><strong><a name=urandom><a href=lsblistKey.html#urandom>urandom</a></a></strong></td>
+<td>initscripts</td>
 <td>compliant</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
 <tr class='yellow'>
 <td><strong><a name=x11-common><a href=lsblistKey.html#x11-common>x11-common</a></a></strong></td>
+<td>x11-common</td>
 <td>incomplete</td>
 <td><a href=http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=></a></td>
 </tr>
@@ -437,7 +510,9 @@
 </table>
 
 </table>
-	<p />Last modified: Sat Jul  8
+	<p />Last modified: 
+Saturday Jul 15, 2006
+	</p>
 	<p /><small>Generated by a GPL licensed perl script 
 	written as part of the <b>Google Summer of Code 2006 Debian Project to <i>Improve the Debian boot process</i></b>.</small>
 

Modified: trunk/www/soc2006-bootsystem/lsblistKey.html
URL: http://svn.debian.org/wsvn/initscripts-ng/trunk/www/soc2006-bootsystem/lsblistKey.html?rev=89&op=diff
==============================================================================
--- trunk/www/soc2006-bootsystem/lsblistKey.html (original)
+++ trunk/www/soc2006-bootsystem/lsblistKey.html Sat Jul 15 19:41:35 2006
@@ -41,7 +41,7 @@
 <div class="content">
       	<h2>List of LSB headers in Debian init-scripts </h2>
 
-<p>This is a list of the scripts in Debian Sid and their LSB headers.<em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em>
+<p>This is a list of the scripts in Debian Sid and their LSB headers.  Currently it shows only the desktop task init-script subset. <em>For more information about adding LSB headers to an init script go to <a href="http://wiki.debian.org/LSBInitScripts/">Debian maintainers guide to LSB compliance</a></em>
 
 <p><a href=lsblist.html>Go to table with LSB compliance information of each init-script</a>
 




More information about the Initscripts-ng-commits mailing list