Report forwarded to debian-bugs-dist@lists.debian.org, Kevin Dalley <kevind@rahul.net>:
Bug#31303; Package findutils.   debian-bugs-dist@lists.debian.orgKevin Dalley  Subject: Bug#31303: Support for FTP servers Reply-To: joey@infodrom.north.de (Martin Schulze), 31303@bugs.debian.org Resent-From: joey@finlandia.Infodrom.North.DE (Martin Schulze) Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Kevin Dalley Resent-Date: Wed, 30 Dec 1998 13:18:01 GMT Resent-Message-ID: Resent-Sender: iwj@debian.org X-Debian-PR-Message: report 31303 X-Debian-PR-Package: findutils X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by bugs@bugs.debian.org id=B.91502340110392 (code B ref -1); Wed, 30 Dec 1998 13:18:01 GMT Message-Id: Date: Wed, 30 Dec 1998 14:09:38 +0100 (CET) From: joey@finlandia.Infodrom.North.DE (Martin Schulze) To: submit@bugs.debian.org X-Header: dpkg-bug-report 4.1-33.1 Bcc: Package: findutils Version: 4.1-33 Severity: wishlist Hi, I'm running a large FTP server with its /pub directory mounted on /pub for convenience. I like to be able to search through the ftp-server without bothering the regular locatedb - I don't want to search on the ftp-server when looking for local filles. I also like to be able to produce URLs to certain files since people keep bothering me with questions like "where can I find this and that". Thus I've modified the filerc package and added support for this: a) Exclude /home/ftp/pub from the regular updatedb run b) Add a second run if /home/ftp/pub exists and remove /home/ftp from the generated path. The file locatedb.pub will be created. c) Add the program ploc which is a simple frontend to locate and queries the locatedb.pub file. It can produce URLs if requested via -f. I would be glad if you would include a similar mechanism in the package. Here are my changes: diff -u -Nur --exclude CVS orig/findutils-4.1/debian/changelog findutils-4.1/debian/changelog --- orig/findutils-4.1/debian/changelog Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/changelog Wed Dec 30 13:45:16 1998 @@ -1,3 +1,12 @@ +findutils (4.1-33.1) unstable; urgency=low + + * Non-maintainer release + * Fixed typo in changelog + * Added 2nd run for updatedb in cronjob + * Added ploc program + + -- Martin Schulze Wed, 30 Dec 1998 13:45:15 +0100 + findutils (4.1-33) frozen unstable; urgency=low * re to remove predependency problem with a specific version libc6. @@ -9,7 +18,7 @@ * added documentation for the environment variables PRUNEPATHS, PRUNEFS, and NETPATHS for updatedb in find.texi and updatedb.1. Added documentation for --prunefs in updatedb. (fixes bug #29755). - * link ChangeLog.gz to changelog.gz, to following policy manual. + * link ChangeLog.gz to changelog.gz, to follow policy manual. -- Kevin Dalley Fri, 4 Dec 1998 23:17:57 -0800 diff -u -Nur --exclude CVS orig/findutils-4.1/debian/cron.find findutils-4.1/debian/cron.find --- orig/findutils-4.1/debian/cron.find Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/cron.find Wed Dec 30 13:56:27 1998 @@ -10,3 +10,12 @@ fi cd / && updatedb --localuser=nobody 2>/dev/null + +ftpdir=/home/ftp +if [ -d $ftpdir/pub ] +then + out=/var/lib/locate/locatedb.pub + unset PRUNEFS + unset PRUNEPATHS + cd / && updatedb --localuser=nobody --localpaths=$ftpdir --ftpdir=$ftpdir --output=$out 2>/dev/null +fi diff -u -Nur --exclude CVS orig/findutils-4.1/debian/ploc findutils-4.1/debian/ploc --- orig/findutils-4.1/debian/ploc Thu Jan 1 01:00:00 1970 +++ findutils-4.1/debian/ploc Wed Dec 30 14:01:04 1998 @@ -0,0 +1,34 @@ +#! /bin/bash + +server=`hostname -f` +server=ftp.${server#*.} + +usage() +{ + echo "ploc - Public locate of files" + echo + echo "ploc [-f [ftphost]] [-h|--help] search-string" + echo " -f adds $server in front" + echo +} + +if [ $# -gt 0 ]; then + if [ "$1" = "-h" -o "$1" = "--help" ]; then + usage + exit + fi + + if [ "$1" = "-f" ]; then + shift + if [ $# -gt 1 ]; then + server=$1 + shift + fi + locate --database=/var/lib/locate/locatedb.pub $* \ + | sed "s,^,ftp://$server,g" + else + locate --database=/var/lib/locate/locatedb.pub $* + fi +else + usage +fi diff -u -Nur --exclude CVS orig/findutils-4.1/debian/rules findutils-4.1/debian/rules --- orig/findutils-4.1/debian/rules Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/rules Wed Dec 30 13:40:31 1998 @@ -63,6 +63,7 @@ gzip -9v debian/tmp/usr/info/* gzip -9v debian/tmp/usr/man/man[15]/* install -m 0644 debian/copyright debian/tmp/usr/doc/$(package)/. + install -m 0755 debian/ploc debian/tmp/usr/bin/. install -m 0644 debian/changelog \ debian/tmp/usr/doc/$(package)/changelog.Debian gzip -9v debian/tmp/usr/doc/$(package)/changelog.Debian diff -u -Nur --exclude CVS orig/findutils-4.1/debian/updatedb.conf findutils-4.1/debian/updatedb.conf --- orig/findutils-4.1/debian/updatedb.conf Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/updatedb.conf Wed Dec 30 13:50:17 1998 @@ -4,8 +4,9 @@ PRUNEFS="NFS nfs afs proc smbfs autofs auto iso9660" export PRUNEFS # paths which are pruned from updatedb database -PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs /amd /alex" +PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs /amd /alex /home/ftp/pub" export PRUNEPATHS # netpaths which are added NETPATHS="" export NETPATHS + diff -u -Nur --exclude CVS orig/findutils-4.1/locate/updatedb.sh findutils-4.1/locate/updatedb.sh --- orig/findutils-4.1/locate/updatedb.sh Wed Dec 30 13:41:57 1998 +++ findutils-4.1/locate/updatedb.sh Wed Dec 30 13:16:57 1998 @@ -30,6 +30,7 @@ opt=`echo $arg|sed 's/^\([^=]*\).*/\1/'` val=`echo $arg|sed 's/^[^=]*=\(.*\)/\1/'` case "$opt" in + --ftpdir) FTPDIR="$val" SEDCMD="sed -e s,$val,,g" ;; --localpaths) SEARCHPATHS="$val" ;; --netpaths) NETPATHS="$val" ;; --prunepaths) PRUNEPATHS="$val" ;; @@ -49,6 +50,9 @@ # You can set these in the environment, or use command-line options, # to override their defaults: +# Maybe remove paths outside of aFTP chroot directory +: ${SEDCMD="cat"} + # Non-network directories to put in the database. : ${SEARCHPATHS="/"} @@ -131,7 +135,7 @@ $find $NETPATHS \( -type d -regex "$PRUNEREGEX" -prune \) -o -print fi fi -} | sort -f | $frcode > $LOCATE_DB.n +} | $SEDCMD | sort -f | $frcode > $LOCATE_DB.n # To avoid breaking locate while this script is running, put the # results in a temp file, then rename it atomically. Regards, Joey -- If you come from outside of Finland, you live in wrong country. -- motd of irc.funet.fi Please always Cc to me when replying to me on the lists.   Acknowledgement sent to joey@infodrom.north.de (Martin Schulze):
New bug report received and forwarded. Copy sent to Kevin Dalley <kevind@rahul.net>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: joey@infodrom.north.de (Martin Schulze) Subject: Bug#31303: Acknowledgement (Support for FTP servers) Message-ID: In-Reply-To: References: X-Debian-PR-Message: ack 31303 Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the developers' mailing list for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Kevin Dalley If you wish to submit further information on your problem, please send it to 31303@bugs.debian.org (and *not* to bugs@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the bug-tracking system. Ian Jackson (administrator, Debian bugs database)   Received: (at submit) by bugs.debian.org; 30 Dec 1998 13:10:01 +0000 Received: (qmail 10385 invoked from network); 30 Dec 1998 13:09:58 -0000 Received: from finlandia.infodrom.north.de (root@134.106.121.3) by master.debian.org with SMTP; 30 Dec 1998 13:09:58 -0000 Received: at Infodrom Oldenburg (/\##/\ Smail-3.2.0.102 1998-Aug-2 #2) by finlandia.Infodrom.North.DE via sendmail from stdin id for submit@bugs.debian.org; Wed, 30 Dec 1998 14:09:38 +0100 (CET) Message-Id: Date: Wed, 30 Dec 1998 14:09:38 +0100 (CET) From: joey@finlandia.Infodrom.North.DE (Martin Schulze) To: submit@bugs.debian.org X-Header: dpkg-bug-report 4.1-33.1 Subject: Support for FTP servers Bcc: Reply-To: joey@infodrom.north.de (Martin Schulze) Package: findutils Version: 4.1-33 Severity: wishlist Hi, I'm running a large FTP server with its /pub directory mounted on /pub for convenience. I like to be able to search through the ftp-server without bothering the regular locatedb - I don't want to search on the ftp-server when looking for local filles. I also like to be able to produce URLs to certain files since people keep bothering me with questions like "where can I find this and that". Thus I've modified the filerc package and added support for this: a) Exclude /home/ftp/pub from the regular updatedb run b) Add a second run if /home/ftp/pub exists and remove /home/ftp from the generated path. The file locatedb.pub will be created. c) Add the program ploc which is a simple frontend to locate and queries the locatedb.pub file. It can produce URLs if requested via -f. I would be glad if you would include a similar mechanism in the package. Here are my changes: diff -u -Nur --exclude CVS orig/findutils-4.1/debian/changelog findutils-4.1/debian/changelog --- orig/findutils-4.1/debian/changelog Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/changelog Wed Dec 30 13:45:16 1998 @@ -1,3 +1,12 @@ +findutils (4.1-33.1) unstable; urgency=low + + * Non-maintainer release + * Fixed typo in changelog + * Added 2nd run for updatedb in cronjob + * Added ploc program + + -- Martin Schulze Wed, 30 Dec 1998 13:45:15 +0100 + findutils (4.1-33) frozen unstable; urgency=low * re to remove predependency problem with a specific version libc6. @@ -9,7 +18,7 @@ * added documentation for the environment variables PRUNEPATHS, PRUNEFS, and NETPATHS for updatedb in find.texi and updatedb.1. Added documentation for --prunefs in updatedb. (fixes bug #29755). - * link ChangeLog.gz to changelog.gz, to following policy manual. + * link ChangeLog.gz to changelog.gz, to follow policy manual. -- Kevin Dalley Fri, 4 Dec 1998 23:17:57 -0800 diff -u -Nur --exclude CVS orig/findutils-4.1/debian/cron.find findutils-4.1/debian/cron.find --- orig/findutils-4.1/debian/cron.find Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/cron.find Wed Dec 30 13:56:27 1998 @@ -10,3 +10,12 @@ fi cd / && updatedb --localuser=nobody 2>/dev/null + +ftpdir=/home/ftp +if [ -d $ftpdir/pub ] +then + out=/var/lib/locate/locatedb.pub + unset PRUNEFS + unset PRUNEPATHS + cd / && updatedb --localuser=nobody --localpaths=$ftpdir --ftpdir=$ftpdir --output=$out 2>/dev/null +fi diff -u -Nur --exclude CVS orig/findutils-4.1/debian/ploc findutils-4.1/debian/ploc --- orig/findutils-4.1/debian/ploc Thu Jan 1 01:00:00 1970 +++ findutils-4.1/debian/ploc Wed Dec 30 14:01:04 1998 @@ -0,0 +1,34 @@ +#! /bin/bash + +server=`hostname -f` +server=ftp.${server#*.} + +usage() +{ + echo "ploc - Public locate of files" + echo + echo "ploc [-f [ftphost]] [-h|--help] search-string" + echo " -f adds $server in front" + echo +} + +if [ $# -gt 0 ]; then + if [ "$1" = "-h" -o "$1" = "--help" ]; then + usage + exit + fi + + if [ "$1" = "-f" ]; then + shift + if [ $# -gt 1 ]; then + server=$1 + shift + fi + locate --database=/var/lib/locate/locatedb.pub $* \ + | sed "s,^,ftp://$server,g" + else + locate --database=/var/lib/locate/locatedb.pub $* + fi +else + usage +fi diff -u -Nur --exclude CVS orig/findutils-4.1/debian/rules findutils-4.1/debian/rules --- orig/findutils-4.1/debian/rules Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/rules Wed Dec 30 13:40:31 1998 @@ -63,6 +63,7 @@ gzip -9v debian/tmp/usr/info/* gzip -9v debian/tmp/usr/man/man[15]/* install -m 0644 debian/copyright debian/tmp/usr/doc/$(package)/. + install -m 0755 debian/ploc debian/tmp/usr/bin/. install -m 0644 debian/changelog \ debian/tmp/usr/doc/$(package)/changelog.Debian gzip -9v debian/tmp/usr/doc/$(package)/changelog.Debian diff -u -Nur --exclude CVS orig/findutils-4.1/debian/updatedb.conf findutils-4.1/debian/updatedb.conf --- orig/findutils-4.1/debian/updatedb.conf Wed Dec 30 13:41:56 1998 +++ findutils-4.1/debian/updatedb.conf Wed Dec 30 13:50:17 1998 @@ -4,8 +4,9 @@ PRUNEFS="NFS nfs afs proc smbfs autofs auto iso9660" export PRUNEFS # paths which are pruned from updatedb database -PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs /amd /alex" +PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs /amd /alex /home/ftp/pub" export PRUNEPATHS # netpaths which are added NETPATHS="" export NETPATHS + diff -u -Nur --exclude CVS orig/findutils-4.1/locate/updatedb.sh findutils-4.1/locate/updatedb.sh --- orig/findutils-4.1/locate/updatedb.sh Wed Dec 30 13:41:57 1998 +++ findutils-4.1/locate/updatedb.sh Wed Dec 30 13:16:57 1998 @@ -30,6 +30,7 @@ opt=`echo $arg|sed 's/^\([^=]*\).*/\1/'` val=`echo $arg|sed 's/^[^=]*=\(.*\)/\1/'` case "$opt" in + --ftpdir) FTPDIR="$val" SEDCMD="sed -e s,$val,,g" ;; --localpaths) SEARCHPATHS="$val" ;; --netpaths) NETPATHS="$val" ;; --prunepaths) PRUNEPATHS="$val" ;; @@ -49,6 +50,9 @@ # You can set these in the environment, or use command-line options, # to override their defaults: +# Maybe remove paths outside of aFTP chroot directory +: ${SEDCMD="cat"} + # Non-network directories to put in the database. : ${SEARCHPATHS="/"} @@ -131,7 +135,7 @@ $find $NETPATHS \( -type d -regex "$PRUNEREGEX" -prune \) -o -print fi fi -} | sort -f | $frcode > $LOCATE_DB.n +} | $SEDCMD | sort -f | $frcode > $LOCATE_DB.n # To avoid breaking locate while this script is running, put the # results in a temp file, then rename it atomically. Regards, Joey -- If you come from outside of Finland, you live in wrong country. -- motd of irc.funet.fi Please always Cc to me when replying to me on the lists.   Information forwarded to debian-bugs-dist@lists.debian.org:
Bug#31303; Package findutils.   debian-bugs-dist@lists.debian.org  Subject: Bug#31303: Support for FTP servers Reply-To: Kevin Dalley , 31303@bugs.debian.org Resent-From: Kevin Dalley Resent-To: debian-bugs-dist@lists.debian.org Resent-Date: Thu, 31 Dec 1998 04:18:00 GMT Resent-Message-ID: Resent-Sender: iwj@debian.org X-Debian-PR-Message: report 31303 X-Debian-PR-Package: findutils X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 31303-bugs@bugs.debian.org id=B31303.91507704320951 (code B ref 31303); Thu, 31 Dec 1998 04:18:00 GMT To: joey@infodrom.north.de (Martin Schulze), 31303@bugs.debian.org References: Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Kevin Dalley Date: 30 Dec 1998 20:02:01 -0800 In-Reply-To: joey@finlandia.Infodrom.North.DE's message of "Wed, 30 Dec 1998 14:09:38 +0100 (CET)" Message-ID: <87lnjpvu12.fsf@aplysia.rahul.net> Lines: 5 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" I'll take a look at your suggestion. -- Kevin Dalley kevind@rahul.net   Acknowledgement sent to Kevin Dalley <kevind@rahul.net>:
Extra info received and forwarded to list.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Kevin Dalley Subject: Bug#31303: Info received (was Bug#31303: Support for FTP servers) Message-ID: In-Reply-To: <87lnjpvu12.fsf@aplysia.rahul.net> References: <87lnjpvu12.fsf@aplysia.rahul.net> X-Debian-PR-Message: ack-info-maintonly 31303 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers' mailing list to accompany the original report. If you wish to continue to submit further information on your problem, please send it to 31303@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the bug-tracking system. Ian Jackson (administrator, Debian bugs database)   Received: (at 31303) by bugs.debian.org; 31 Dec 1998 04:04:03 +0000 Received: (qmail 20948 invoked from network); 31 Dec 1998 04:04:01 -0000 Received: from dyn146.rahul.net (HELO aplysia.rahul.net) (206.61.225.146) by master.debian.org with SMTP; 31 Dec 1998 04:04:01 -0000 Received: (from kevind@localhost) by aplysia.rahul.net (8.9.1a/8.9.1/Debian/GNU) id UAA12826; Wed, 30 Dec 1998 20:02:59 -0800 To: joey@infodrom.north.de (Martin Schulze), 31303@bugs.debian.org Subject: Re: Bug#31303: Support for FTP servers References: Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Kevin Dalley Date: 30 Dec 1998 20:02:01 -0800 In-Reply-To: joey@finlandia.Infodrom.North.DE's message of "Wed, 30 Dec 1998 14:09:38 +0100 (CET)" Message-ID: <87lnjpvu12.fsf@aplysia.rahul.net> Lines: 5 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" I'll take a look at your suggestion. -- Kevin Dalley kevind@rahul.net   Noted your statement that Bug has been forwarded to findutils-bugs@prep.ai.mit.edu. Request was from Kevin Dalley <kevind@rahul.net> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 31 Jan 2000 21:48:35 +0000 Received: (qmail 23961 invoked from network); 31 Jan 2000 21:48:34 -0000 Received: from p39.eb0.rahul.net (HELO laminaria.rahul.net) (root@204.95.72.39) by master.debian.org with SMTP; 31 Jan 2000 21:48:34 -0000 Received: (from kevin@localhost) by laminaria.rahul.net (8.9.3/8.9.3/Debian 8.9.3-6) id NAA07279; Mon, 31 Jan 2000 13:48:32 -0800 Sender: kevin@rahul.net To: control@bugs.debian.org Subject: various findutils bugs forwarded upstream From: Kevin Dalley Reply-to: Kevin Dalley Mime-Version: 1.0 (generated by tm-edit 1.5) Content-Type: text/plain; charset=US-ASCII Date: 31 Jan 2000 13:48:31 -0800 Message-ID: Lines: 17 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Bryce Canyon" forwarded 21084 findutils-bugs@prep.ai.mit.edu forwarded 23615 findutils-bugs@prep.ai.mit.edu forwarded 31858 findutils-bugs@prep.ai.mit.edu forwarded 34119 findutils-bugs@prep.ai.mit.edu forwarded 40245 findutils-bugs@prep.ai.mit.edu forwarded 46143 findutils-bugs@prep.ai.mit.edu forwarded 31303 findutils-bugs@prep.ai.mit.edu severity 43316 wishlist -- There are new alpha releases of findutils being worked on (by me). I am handling all of these bugs for the upstream release first. If that seems to be stable, these fixes will be release to Debian as well. Kevin Dalley kevind@rahul.net   Forwarded-to-address changed from findutils-bugs@prep.ai.mit.edu to findutils-bugs@prep.ai.mit.edu. Request was from Kevin Dalley <kevind@rahul.net> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 31 Jan 2000 21:48:35 +0000 Received: (qmail 23961 invoked from network); 31 Jan 2000 21:48:34 -0000 Received: from p39.eb0.rahul.net (HELO laminaria.rahul.net) (root@204.95.72.39) by master.debian.org with SMTP; 31 Jan 2000 21:48:34 -0000 Received: (from kevin@localhost) by laminaria.rahul.net (8.9.3/8.9.3/Debian 8.9.3-6) id NAA07279; Mon, 31 Jan 2000 13:48:32 -0800 Sender: kevin@rahul.net To: control@bugs.debian.org Subject: various findutils bugs forwarded upstream From: Kevin Dalley Reply-to: Kevin Dalley Mime-Version: 1.0 (generated by tm-edit 1.5) Content-Type: text/plain; charset=US-ASCII Date: 31 Jan 2000 13:48:31 -0800 Message-ID: Lines: 17 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Bryce Canyon" forwarded 21084 findutils-bugs@prep.ai.mit.edu forwarded 23615 findutils-bugs@prep.ai.mit.edu forwarded 31858 findutils-bugs@prep.ai.mit.edu forwarded 34119 findutils-bugs@prep.ai.mit.edu forwarded 40245 findutils-bugs@prep.ai.mit.edu forwarded 46143 findutils-bugs@prep.ai.mit.edu forwarded 31303 findutils-bugs@prep.ai.mit.edu severity 43316 wishlist -- There are new alpha releases of findutils being worked on (by me). I am handling all of these bugs for the upstream release first. If that seems to be stable, these fixes will be release to Debian as well. Kevin Dalley kevind@rahul.net   Changed Bug submitter from joey@infodrom.north.de (Martin Schulze) to Martin Schulze <joey@infodrom.org>. Request was from Martin Schulze <joey@infodrom.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 29 May 2007 06:18:33 +0000 From joey@finlandia.infodrom.north.de Tue May 29 06:18:33 2007 Return-path: Received: from luonnotar.infodrom.org ([217.114.79.202] ident=postfix) by rietz.debian.org with esmtp (Exim 4.50) id 1Hsv1m-0001XW-NT for control@bugs.debian.org; Tue, 29 May 2007 06:17:55 +0000 Received: by luonnotar.infodrom.org (Postfix, from userid 10) id B7A05648393; Tue, 29 May 2007 08:17:53 +0200 (CEST) Received: by finlandia.home.infodrom.org (Postfix, from userid 501) id B6960FD86; Tue, 29 May 2007 08:11:17 +0200 (CEST) Date: Tue, 29 May 2007 08:11:17 +0200 From: Martin Schulze To: control@bugs.debian.org Subject: Reorganisation Message-ID: <20070529061117.GP28276@finlandia.home.infodrom.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Delivered-To: control@bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, hits=-4.0 required=4.0 tests=BAYES_00,ONEWORD, VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2005_01_02 tags 279120 help tags 279120 moreinfo severity 279120 normal tags 315605 upstream tags 315605 pending forwarded 315605 infodrom-sysklogd@lists.infodrom.org close 22673 close 37193 close 42001 tags 59662 help tags 59662 moreinfo tags 59662 upstream tags 315605 pending fixed 91804 1.4.1-1 close 95480 fixed 100043 1.4.1-12 tags 107501 upstream tags 107501 pending tags 149659 unreproducible close 149659 tags 166433 upstream tags 166433 pending tags 166763 upstream tags 166763 pending tags 203710 upstream tags 203710 pending severity 206947 wishlist fixed 222245 1.4.1-19 tags 238507 upstream tags 238507 pending close 282058 tags 284877 upstream tags 284877 pending reopen 178000 tags 178000 upstream tags 178000 pending tags 308580 help tags 308580 moreinfo severity 365265 wishlist merge 415136 178000 tags 415136 upstream tags 419496 help tags 118856 help tags 419496 moreinfo tags 118856 upstream tags 334295 help tags 334295 unreproducible tags 118856 pending tags 426271 upstream tags 426271 pending tags 192841 upstream tags 192841 pending unmerge 178050 198419 fixed 198419 1.4.1-19 fixed 226036 1.4.1-19 fixed 241657 1.4.1-19 tags 201231 upstream tags 201231 pending tags 291442 upstream tags 291442 pending tags 108653 upstream tags 108653 pending close 127620 tags 136190 upstream tags 136190 pending tags 144499 upstream tags 144499 pending tags 196521 upstream tags 196521 pending tags 44523 wontfix tags 70429 wontfix tags 70429 upstream tags 89677 wontfix tags 94285 upstream close 166018 close 244028 tags 353744 upstream tags 174038 upstream tags 147471 upstream tags 385292 upstream retitle 158090 Every process can make use of syslog submitter 27284 ! submitter 38529 ! submitter 51054 ! submitter 62812 ! submitter 64053 ! submitter 68670 ! submitter 71582 ! submitter 95380 ! submitter 273594 ! submitter 68862 ! submitter 98822 ! submitter 23515 ! submitter 31027 ! submitter 36592 ! submitter 37772 ! submitter 59614 ! submitter 59617 ! submitter 65372 ! submitter 66878 ! submitter 44910 ! submitter 31303 ! submitter 34042 ! submitter 61085 ! submitter 78574 ! submitter 117142 ! submitter 140879 ! submitter 26451 ! thanks Note to Bug#37193: There's a DNS resolver timeout but after timeout syslogd will complete init and run fine. When there's not nameserver available yet, start syslogd a little bit later. -- Every use of Linux is a proper use of Linux. -- Jon 'maddog' Hall Please always Cc to me when replying to me on the lists.