NASAdave has asked for the wisdom of the Perl Monks concerning the following question:
It always returns 0 even though I know the user is valid in NIS, and doing a strace shows it using the correct NIS server and securenets looks good... - I swear I have checked everything - any ideas?#!/usr/bin/perl use Authen::Simple::NIS; use Net::NIS; my $default_domain = Net::NIS::yp_get_default_domain(); my %nis_hash = (); %nis_hash->{'domain'} = Net::NIS::yp_get_default_domain(); my $nis = Authen::Simple::NIS->new(%nis_hash); if ( $nis->authenticate( "user", "testpass" ) ) { print "Success\n" ; # successfull authentication } print "done\n" ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl NIS authentication
by VinsWorldcom (Prior) on Feb 20, 2013 at 19:59 UTC |