如何修复ValueError:太多值无法在Ansible中解包?

时间:2018-10-16 07:54:35

标签: pip ansible

我有一个简单的任务。

- name: Install executor package
  apt:
    name: '{{ item }}'
    state: present
  with_items:
    - python-dev
    - python-pip
    - python-setuptools

- pip:
    name: pipenv

他工作了。但是检查后,我发现了这样的错误。

任务[点] *********************************************** ******************************************


致命:[]:失败! => {“已更改”:false,“失败”:true,“ module_stderr”:“与关闭的共享连接。\ r \ n”,“ module_stdout”:“跟踪(最近一次调用):\ r \ n文件\ “ /tmp/ansible_WJSCVE/ansible_module_pip.py \”,第601行,位于\ r \ n main()\ r \ n File \“ / tmp / ansible_WJSCVE / ansible_module_pip.py \”,第561行,位于main \ r \ n is_present = _is_present(pkg,版本,pkg_list,pkg_cmd)\ r \ n文件\“ / tmp / ansible_WJSCVE / ansible_module_pip.py \”,第283行,在_is_present \ r \ n pkg_name,pkg_version = pkg.split('') \ r \ n ValueError:要解压缩的值太多 \ r \ n“,” msg“:”模块失败“,” rc“:0}

我不明白是什么问题。

0 个答案:

没有答案