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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.