Re: [gentoo-dev] RFC: new project gentoo-extreme-security

2007-10-22 Thread Sune Kloppenborg Jeppesen
On Monday 22 October 2007 06:04:58 Donnie Berkholz wrote: > On 01:42 Mon 22 Oct , Alexander Gabert wrote: > > this is a request for comments on a new project: > > > > http://www.gentoo.org/proj/en/extreme-security/ This sounds interesting, though the project page is not very specific. > I'm cu

[gentoo-dev] Re: Re: Re: repoman - I cannot handle it...

2007-10-22 Thread Steve Long
Marius Mauch wrote: > On Sun, 21 Oct 2007 23:13:58 +0100 > Steve Long <[EMAIL PROTECTED]> wrote: >> Well the line from portage_versions.py is: >> ver_regexp = re.compile("^(cvs\\.)?(\\d+)((\\.\\d+)*)([a-z]?)((_(pre| >> p|beta >> alpha|rc)\\d*)*)(-r(\\d+))?$") >> - which means that a version begins

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in app-portage/portato: ChangeLog portato-0.8.6.ebuild portato-0.8.5.ebuild

2007-10-22 Thread Donnie Berkholz
On 17:03 Sat 20 Oct , Markus Ullmann (jokey) wrote: > 1.1 app-portage/portato/portato-0.8.6.ebuild > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/portato/portato-0.8.6.ebuild?rev=1.1&view=markup > plain: > http://sources.gentoo.org/viewcvs.py/gentoo

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in app-portage/portato: ChangeLog portato-0.8.6.ebuild portato-0.8.5.ebuild

2007-10-22 Thread René 'Necoro' Neumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Donnie Berkholz schrieb: > On 17:03 Sat 20 Oct , Markus Ullmann (jokey) wrote: >> 1.1 app-portage/portato/portato-0.8.6.ebuild >> >> file : >> http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/portato/portato-0.8.6.ebuil

[gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Bertram Scharpf
Hi, when setting up LDAP Pam authentication I encountered a problem that seems to be neither Slapd- nor nss_ldap-specific. When running the init script there comes up an error that clutters up my syslog with a lot of useless error messages: @(#) $OpenLDAP: slapd 2.3.38 (Oct 18 2007 22:12:26) $

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Benjamin Smee
On Monday 22 October 2007 13:12:29 Bertram Scharpf wrote: > Hi, > > when setting up LDAP Pam authentication I encountered a > problem that seems to be neither Slapd- nor > nss_ldap-specific. > > When running the init script there comes up an error that > clutters up my syslog with a lot of useless

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Bertram Scharpf
Hi, Am Montag, 22. Okt 2007, 13:44:19 +0100 schrieb Benjamin Smee: > On Monday 22 October 2007 13:12:29 Bertram Scharpf wrote: > > > > @(#) $OpenLDAP: slapd 2.3.38 (Oct 18 2007 22:12:26) $ > > [EMAIL > > PROTECTED]:/var/tmp/portage/net-nds/openldap-2.3.38/work/openldap-2.3.38/ > >servers/sl

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Michael Hanselmann
Hi On Mon, Oct 22, 2007 at 02:12:29PM +0200, Bertram Scharpf wrote: > Therefore I suppose the slapd daemon tries to obtain passwd/shadow > information for ldap via nss_ldap. Yes, it does. Therefore, use something like the following line in /etc/ldap.conf: nss_initgroups_ignoreusers root,ldap,c

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Alec Warner
On 10/22/07, Michael Hanselmann <[EMAIL PROTECTED]> wrote: > Hi > > On Mon, Oct 22, 2007 at 02:12:29PM +0200, Bertram Scharpf wrote: > > Therefore I suppose the slapd daemon tries to obtain passwd/shadow > > information for ldap via nss_ldap. > > Yes, it does. Therefore, use something like the foll

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Alec Warner
On 10/22/07, Bertram Scharpf <[EMAIL PROTECTED]> wrote: > Hi, > > Am Montag, 22. Okt 2007, 13:44:19 +0100 schrieb Benjamin Smee: > > On Monday 22 October 2007 13:12:29 Bertram Scharpf wrote: > > > > > > @(#) $OpenLDAP: slapd 2.3.38 (Oct 18 2007 22:12:26) $ > > > [EMAIL > > > PROTECTED]:/var/

Re: [gentoo-dev] striping blank lines (was: stripping out the DO NOT REPLY from bugzie emails)

2007-10-22 Thread Peter Volkov
В Сбт, 29/09/2007 в 07:05 -0400, Mike Frysinger пишет: > when comments get added, there are 5 blank lines between the bugzilla > URI's and the start of actual content ... This can be workarouned with another .procmailrc rule: # Strip out excess empty lines :0 Hfw * ^From: [EMAIL PROTECTED] | awk

Re: [gentoo-dev] striping blank lines (was: stripping out the DO NOT REPLY from bugzie emails)

2007-10-22 Thread Elias Probst
Am Montag, 22. Oktober 2007 18:09:37 schrieb Peter Volkov: > | awk '{ if ( $0 == "" ) {el++;} else { if (el>0) print ""; el=0; print $0 > | ;}}' > > I'm not sure that this is the best approach but I did not found a way > how to do this with sed. If it's possible I'd like to know how, so I > could j

Re: [gentoo-dev] striping blank lines (was: stripping out the DO NOT REPLY from bugzie emails)

2007-10-22 Thread Peter Volkov
В Пнд, 22/10/2007 в 19:21 +0200, Elias Probst пишет: > To delete empty lines with sed, just do a > sed '/^$/d' > I hope that's what you're looking for. No. awk command in the previous mail substituted 2 or more empty lines with exactly one empty line. Your command makes mail less readable. -- P

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in net-mail/mailgraph: ChangeLog mailgraph-1.14.ebuild

2007-10-22 Thread Donnie Berkholz
On 18:24 Mon 22 Oct , Tobias Scherbaum (dertobi123) wrote: > 1.1 net-mail/mailgraph/mailgraph-1.14.ebuild > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailgraph/mailgraph-1.14.ebuild?rev=1.1&view=markup > plain: > http://sources.gentoo.org/viewcvs.py

Re: [gentoo-dev] striping blank lines (was: stripping out the DO NOT REPLY from bugzie emails)

2007-10-22 Thread Thomas de Grenier de Latour
On 2007/10/22, Peter Volkov <[EMAIL PROTECTED]> wrote: > > В Пнд, 22/10/2007 в 19:21 +0200, Elias Probst пишет: > > To delete empty lines with sed, just do a > > sed '/^$/d' > > I hope that's what you're looking for. > > No. awk command in the previous mail substituted 2 or more empty lines > wi

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Bertram Scharpf
Hi, Am Montag, 22. Okt 2007, 08:48:59 -0700 schrieb Alec Warner: > On 10/22/07, Bertram Scharpf <[EMAIL PROTECTED]> wrote: > > Is there a way to determine _what_ nss is asked for? > > Sure, turn on nscd in super debug mode and you should see most, if not > all the requests. A _really_ cool idea.

Re: [gentoo-dev] Slapd calls nss_ldap before opening its ports

2007-10-22 Thread Bertram Scharpf
Hi, Am Montag, 22. Okt 2007, 15:30:59 +0200 schrieb Michael Hanselmann: > On Mon, Oct 22, 2007 at 02:12:29PM +0200, Bertram Scharpf wrote: > > Therefore I suppose the slapd daemon tries to obtain passwd/shadow > > information for ldap via nss_ldap. > > Yes, it does. Therefore, use something like

Re: [gentoo-dev] RFC: new project gentoo-extreme-security

2007-10-22 Thread Omer Cohen
On 10/22/07, Sune Kloppenborg Jeppesen <[EMAIL PROTECTED]> wrote: > On Monday 22 October 2007 06:04:58 Donnie Berkholz wrote: > > On 01:42 Mon 22 Oct , Alexander Gabert wrote: > > > this is a request for comments on a new project: > > > > > > http://www.gentoo.org/proj/en/extreme-security/ > Th