运行Ansible 2.9.10 fortinet.fortios playbook时出现问题

2024-07-04 14:29:55 发布

您现在位置:Python中文网/ 问答频道 /正文

关于如何运行下面的剧本有什么建议吗?下面是我的剧本、主机文件和错误

剧本

---
- hosts: fortigates
  collections:
   - fortinet.fortios
  connection: httpapi
  vars:
   vdom: "root"
   ansible_httpapi_use_ssl: yes
   ansible_httpapi_validate_certs: no
   ansible_httpapi_port: 443
  tasks:
  - name: Configure global attributes.
    fortios_system_global:
      vdom:  "{{ vdom }}"
      system_global:
        admintimeout: "23"
        hostname: "FortiGate01"

主机文件

[fortigates]
fortigate01 ansible_host=192.168.0.103

ansible_user="admin"
ansible_password="password"

[fortigates:vars]
ansible_network_os=fortinet.fortios.fortios
ansible_python_interpreter=/user/bin/python3

输出错误

TASK [Gathering Facts] *************************************************************************************************************************************** fatal: [ansible_password=passwpord]: FAILED! => {"ansible_facts": {}, "changed": false, "failed_modules": {"setup": {"failed": true, "module_stderr": "/bin/sh: 1: /user/bin/python3: not found\n", "module_stdout": "", "msg": "The module failed to execute correctly, you probably need to set the interpreter.\nSee stdout/stderr for the exact error", "rc": 127}}, "msg": "The following modules failed to execute: setup\n"} fatal: [ansible_user=admin]: FAILED! => {"ansible_facts": {}, "changed": false, "failed_modules": {"setup": {"failed": true, "module_stderr": "/bin/sh: 1: /user/bin/python3: not found\n", "module_stdout": "", "msg": "The module failed to execute correctly, you probably need to set the interpreter.\nSee stdout/stderr for the exact error", "rc": 127}}, "msg": "The following modules failed to execute: setup\n"} fatal: [fortigate01]: FAILED! => {"ansible_facts": {}, "changed": false, "failed_modules": {"setup": {"failed": true, "module_stderr": "/bin/sh: 1: /user/bin/python3: not found\n", "module_stdout": "", "msg": "The module failed to execute correctly, you probably need to set the interpreter.\nSee stdout/stderr for the exact error", "rc": 127}}, "msg": "The following modules failed to execute: setup\n"}


Tags: thetomodulesexecutebinstderrstdoutsetup

热门问题