Seriously, that message had an attachment.  Either gpg got confused, or
it got stripped off...

CJK
#BEGIN WHOSON.PL
#!/usr/bin/perl
open (LS, "ls -1 /var/run/ppp*.pid|");
while (<LS>)    {
        chop;
        open (PPP, "cat $_|");
        while (<PPP>) {
                chop;
                print "PPP: $_\n";
                open(LOG, "grep -h $_ /var/log/messages*|");
                while (<LOG>)   {
                        chop;
                        if (/authentication/) {
                                $name = substr($_, index($_, "for")+4);
                                $since = substr($_, 0, 16);
                        }
                }
                print "Name: $name \t - \t Since: $since\n";
                close (LOG);
        }
        close (PPP);    
}
close (LS);
#Hope this helped.

On Sun, 2004-02-22 at 20:40, Phillip Rhodes wrote:
> Hey gang, I was just wondering if anybody knows
> a way to get a list of the currently connected
> users, on a VPN server running PopTop?
> 
> I was unable to find anything about this using
> Google, so I'm hoping one of the Tri-LUG resident
> experts will be able to help me out.. :-)
> 
> TTYL,
> 
> Phillip
> 
> -- 
> When the 1st Amendment no longer protects your voice.
> And when the 4th Amendment no longer protects your privacy or your stuff.
> Thank God we have the 2nd Amendment to tell our elected representatives 
> that enough is enough.
> It's time to put "... from my cold, dead hands" back where it belongs.
> 
> FREE AMERICA
> Vote Libertarian
> www.lp.org

Attachment: signature.asc
Description: This is a digitally signed message part

-- 
TriLUG mailing list        : http://www.trilug.org/mailman/listinfo/trilug
TriLUG Organizational FAQ  : http://trilug.org/faq/
TriLUG Member Services FAQ : http://members.trilug.org/services_faq/
TriLUG PGP Keyring         : http://trilug.org/~chrish/trilug.asc

Reply via email to