当我使用ansible模块expect时,我得到这个消息:The pexpect python module is required

当我使用ansible模块expect时,我得到这个消息:The pexpect python module is required

yml 文件中的一些代码:

- name: --- run /opt/installer/bin/install.sh ---
  expect:
      command: /opt/installer/bin/install.sh
      responses:
        'Are you installing the application at the central data center? [yes/no default: yes]? [yes]': "\n"
        'What is the code of central data center [default: 01]? [01]': "\n"
        'What is ip or hostname of your server [default: localhost]? [localhost]': 'portal'

pexpect 3.3在两台服务器(ansible和目标machines)上安装了模块。

[root@portal pexpect-3.3]# python setup.py install
running install
running build
running build_py
running install_lib
running install_egg_info
Removing /usr/lib/python2.7/site-packages/pexpect-3.3-py2.7.egg-info
Writing /usr/lib/python2.7/site-packages/pexpect-3.3-py2.7.egg-info

当我运行 playbook 时出现此错误:

TASK [ansible-portal : --- run /opt/installer/bin/install.sh ---] *************************************************************************
fatal: [portal]: FAILED! => {"changed": false, "msg": "The pexpect python module is required"}

更多信息 :

[root@ansible ansible]# ansible --version
ansible 2.4.2.0
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.5 (default, Aug  4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)]

答案1

与其中的某些模块一样,ansible您必须在远程服务器端安装某些 Python 模块。

您可以使用该pip模块通过您的ansible剧本来促进这一点,如下所示:

- name: install pexpect
  pip:
    name: pexpect
  become: yes

您的发行版也可能以 DEB 或 RPM 文件形式提供这些文件。如果是这样,您可能想使用发行版的包管理器来安装此 Python 模块。

在您的情况下,您安装模块的 Python 可能pexpect与正在使用的 Python 不同ansible。在这种情况下,我将使用系统的包管理器来安装pexpect.

通过包管理器

在 Debian/Ubuntu 系统上使用 apt-get:

$ sudo apt-get install python-pexpect

在 Redhat 发行版 (Fedora/CentOS) 上:

$ sudo yum install -y pexpect

参考

相关内容