我已经在 Ubuntu Precise 64 上安装了 Ansible 1.2.3。
运行ansible-playbook -i ansible_hosts playbook.yml
给我这个错误:
ERROR: problem running ansible_hosts --list ([Errno 8] Exec format error)
以下是 的内容ansible_hosts
:
[development]
localhost ansible_connection=local
和playbook.yml
:
---
- hosts: development
sudo: yes
tasks:
- name: install curl
apt: pkg=curl update_cache=yes
我怎样才能使这项工作?