I do not have a perl dir under my hobbit server instance as defined in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT/hobbit/server/ext/perl/
How do I go by using it?
-- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
Do you mean something like this:
Add to .../client/etc/hobbitclient.cfg:
PERL5LIB="/development/hobbit/lib"
From: Asif Iqbal [mailto:vadud3 at gmail.com] Sent: Monday, June 11, 2007 12:03 PM To: hobbit at hswn.dk Subject: [hobbit] perl dir on bb-xsnmp.pl
I do not have a perl dir under my hobbit server instance as defined in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT/hobbit/server/ext/perl/
How do I go by using it?
-- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
On 6/11/07, Haertig, David F (Dave) <haertig at avaya.com> wrote:
Do you mean something like this:
Add to .../client/etc/hobbitclient.cfg:
PERL5LIB="/development/hobbit/lib"
Well is there a perl module for Hobbit or can I just change the following line in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT/hobbit/server/ext/perl/
to
use lib qw(/path/to/perl/)
*From:* Asif Iqbal [mailto:vadud3 at gmail.com] *Sent:* Monday, June 11, 2007 12:03 PM *To:* hobbit at hswn.dk *Subject:* [hobbit] perl dir on bb-xsnmp.pl
I do not have a perl dir under my hobbit server instance as defined in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT/hobbit/server/ext/perl/
How do I go by using it?
-- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
-- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
I am not familiar with the bb-xsnmp.pl program. If it's trying to "use" some custom module, then you need to make sure you have that custom module correctly installed on your system and perl knows how to find it (via PERL5LIB or "use lib" directive).
For example, all my Hobbit custom perl scripts have:
use lib qw( /development/hobbit/lib ); use bbMsg;
bbMsg.pm is a custom module I wrote, it's not in the standard PERL library path, so I have to specify "use lib" in my scripts or PERL5LIB in my environment telling perl where it can find my module (which happens to be in /development/hobbit/lib).
From: Asif Iqbal [mailto:vadud3 at gmail.com] Sent: Monday, June 11, 2007 12:32 PM To: hobbit at hswn.dk Subject: Re: [hobbit] perl dir on bb-xsnmp.pl
On 6/11/07, Haertig, David F (Dave) <haertig at avaya.com> wrote:
Do you mean something like this:
Add to .../client/etc/hobbitclient.cfg:
PERL5LIB="/development/hobbit/lib"
Well is there a perl module for Hobbit or can I just change the following line in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT /hobbit/server/ext/perl/
to
use lib qw(/path/to/perl/)
From: Asif Iqbal [mailto:vadud3 at gmail.com]
Sent: Monday, June 11, 2007 12:03 PM
To: hobbit at hswn.dk
Subject: [hobbit] perl dir on bb-xsnmp.pl
I do not have a perl dir under my hobbit server instance as
defined in bb-xsnmp.pl
use lib qw(/local/packages/IT/HOBBIT/hobbit/server/ext/perl/
How do I go by using it?
--
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
-- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
participants (2)
-
haertig@avaya.com
-
vadud3@gmail.com