Operating System - HP-UX
1748169 Members
4116 Online
108758 Solutions
New Discussion

Re: Ansible module run on remote HP-UX 11.11 servers

 
Amy Ng_2
Occasional Contributor

Ansible module run on remote HP-UX 11.11 servers

We are trying to get ansible modules to run on remote HP-UX 11.11 systems. We have installed Python 2.7.6 on these systems. It works for some modules (e.g. ping module). However, some of the ansible modules will return “Unresolved symbol” errors. Does anyone know how to get ansible modules to run on remote HP-UX 11.11 systems?

 

We get the following error from setup module:

 

TASK [setup] *******************************************************************

task path: /home/ang/Archive/Change_Password/ch-passwd.yml:18

fatal: [camintq1]: FAILED! => {"changed": false, "failed": true, "module_stderr": "Shared connection to camintq1 closed.\r\n", "module_stdout": "/usr/lib/dld.sl: Unresolved symbol: CRYPTO_THREADID_set_callback (code)  from /usr/local/lib/python2.7/lib-dynload/_ssl.sl\r\n", "msg": "MODULE FAILURE"}

 

1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: Ansible module run on remote HP-UX 11.11 servers

Where is CRYPTO_THREADID_set_callback suppose to be defined?

nm -pxNA /usr/lib/*.sl | grep CRYPTO_THREADID_set_callback

If it works on some systems, try that there.