Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
A perl package's name comes from the "package XYZ" declaration. If you change this, and change the directory name, and change every use of the Infoblox:: namespace... you have a good chance of it all working.
# install Infoblox version 7 first, # then in the perl lib directory where it installed: find Infoblox -print0 | xargs -0 \ sed -i -e 's/Infoblox::/Infoblox7::/g' mv Infoblox Infoblox7
If there is also a Infoblox.pm, then run sed on it too.
sed -i -e 's/package Infoblox/package Infoblox7/g' \ -e 's/Infoblox::/Infoblox7/g' \ Infoblox.pm mv Infoblox.pm Infoblox7.pm
Then, give it a review for other uses of the word Infoblox to look for any others that might need to change:
grep -C 4 -R 'Infoblox[^7]' Infoblox7.pm Infoblox7 | less
Then... give it a try. If it works, then you can install the new Infoblox alongside. (and maybe decide to rename it too, since they vendor wasn't helpful enough to version their module)

If it doesn't work, then fall back to the other lib directory strategies proposed here.


In reply to Re: Change Namespace of Package by NERDVANA
in thread Change Namespace of Package by elliott9

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-25 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found