Re: two identical directives in configuration (doc patch included)

2000-11-18 Thread Adi Fairbank
Dave Kaufman wrote: > > "Adi Fairbank" <[EMAIL PROTECTED]> wrote: > > Dave Kaufman wrote: > > > > > > $Location{"blah"} = { > > > require => "group payer_manager, payer_group demo" > > > }; > > > should do the trick. > > > > I wrote: > > > Thanks, that fixed it. > > > > Actually, no that didn't

Re: two identical directives in configuration (doc patch included)

2000-11-17 Thread Dave Kaufman
"Adi Fairbank" <[EMAIL PROTECTED]> wrote: > Dave Kaufman wrote: > > > > $Location{"blah"} = { > > require => "group payer_manager, payer_group demo" > > }; > > should do the trick. > > I wrote: > > Thanks, that fixed it. > > Actually, no that didn't fix it! > $r->requires > returns > [

Re: two identical directives in configuration (doc patch included)

2000-11-17 Thread Adi Fairbank
Dave Kaufman wrote: > > i belive it is. in fact, i didn't realize specifing two require coditions (one >group and one user) worked on *separate* lines :) > > something like: > > $Location{"blah"} = { > require => "group payer_manager, payer_group demo" > }; > > should do the trick. > > -d

Re: two identical directives in configuration (doc patch included)

2000-11-17 Thread Adi Fairbank
Dave Kaufman wrote: > > i belive it is. in fact, i didn't realize specifing two require coditions (one >group and one user) worked on *separate* lines :) > > something like: > > $Location{"blah"} = { > require => "group payer_manager, payer_group demo" > }; > > should do the trick. > > -d

Re: two identical directives in configuration

2000-11-17 Thread Dave Kaufman
"Adi Fairbank" <[EMAIL PROTECTED]> wrote: > No I tried that (sorry I should have said so). I think: > > > $Location{"blah"} = { > require => ["group payer_manager", "payer_group demo"] > }; > > > is equivalent to: > > > require group payer_manager payer_group demo > > > but I'm not s

Re: two identical directives in configuration

2000-11-17 Thread Adi Fairbank
No I tried that (sorry I should have said so). I think: $Location{"blah"} = { require => ["group payer_manager", "payer_group demo"] }; is equivalent to: require group payer_manager payer_group demo but I'm not sure. In any case, it doesn't work. Maybe I'll have a looksee at the sou

Re: two identical directives in configuration

2000-11-17 Thread Tom Lancaster
I think require => ["group payer_manager", "payer_group demo"] should do it. On Fri, Nov 17, 2000 at 01:11:09PM -0500, Adi Fairbank wrote: > Say I have a $Directory{} configuration in a section like so: > > $Directory{"/home/httpd/html-ssl/demo"} = { > SetHandler => "perl-script", >

two identical directives in configuration

2000-11-17 Thread Adi Fairbank
Say I have a $Directory{} configuration in a section like so: $Directory{"/home/httpd/html-ssl/demo"} = { SetHandler => "perl-script", PerlAuthenHandler => "Authen", PerlAuthzHandler => "Authz", require => "group payer_manager", require => "payer_group dem