Re: [OmniOS-discuss] Python difference

2014-12-13 Thread Theo Schlossnagle
A package (like ha) should either rely on the system python packages / versions it needs to work (thus preventing your upgrade to 012) or more reasonably rely on its own known-good python. I don't believe OmniOS makes any release-to-release compatibility guarantees for python (or perl or java for

Re: [OmniOS-discuss] Python difference

2014-12-13 Thread Tim Rice
On Sat, 13 Dec 2014, Theo Schlossnagle wrote: | A package (like ha) should either rely on the system python packages / | versions it needs to work (thus preventing your upgrade to 012) or more | reasonably rely on its own known-good python. I don't believe OmniOS makes | any release-to-release

Re: [OmniOS-discuss] Python difference

2014-12-11 Thread Joe Veliscos
Hi The command that I execute : root#crm abort: couldn't find crm libraries in [/opt/ha/sbin /usr/lib/python2.6/vendor-packages/setuptools-0.6c11-py2.6.egg /opt/ha/lib/python2.6/site-packages /usr/lib/python26.zip /usr/lib/python2.6 /usr/lib/python2.6/plat-sunos5 /usr/lib/python2.6/lib-tk

Re: [OmniOS-discuss] Python difference

2014-12-11 Thread Dan McDonald
Did you look to see if there's anything in /opt/ha/lib/python2.6/site-packages ? The massive ENOENTs you're showing me are just library searching. See how several path and filename combos are tried? HA should be more clear about how it failed. Also, look toward the end of the truss, and just

Re: [OmniOS-discuss] Python difference

2014-12-11 Thread Joe Veliscos
Yes I did look in the /opt/ha/lib/python2.6/site-packages .It contains maps with crm (HA) specific python modules . At the end of the truss there's a long list of unsuccesfull open calls for modules many of which are to a readline module e.g. (short list) /usr/lib/python2.6/lib-dynload/cStringIO

Re: [OmniOS-discuss] Python difference

2014-12-11 Thread Dan McDonald
On Dec 11, 2014, at 6:23 PM, Joe Veliscos joevelis...@gmail.com wrote: Yes I did look in the /opt/ha/lib/python2.6/site-packages .It contains maps with crm (HA) specific python modules . At the end of the truss there's a long list of unsuccesfull open calls for modules many of which

Re: [OmniOS-discuss] Python difference

2014-12-11 Thread Joe Veliscos
Just checked, Most of them are in the /usr/lib/python2.6/ and sub directories. The HA package was created by sazo, usually a frequent member of this list. I seems there's a diff in the installed python packages between releases so I'll have to play around to get this working I think. Thanks for