Я не могу понять, что здесь происходит. Это моя очень простая ansible playbook:
---
- name: "Playing with Ansible and Git"
hosts: localhost
connection: local
tasks:
- name: "clone the repo"
- become: yes
- git:
repo: https://github.com/ansible/ansible-examples.git
dest: /opt/
clone: yes
update: yes
Это моя версия ansible -playbook
ansible-playbook --version
ansible-playbook 2.9.6
Ошибка
ERROR! no module/action detected in task.
The error appears to be in 'local.yml': line 6, column 11, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
tasks:
- name: "clone the repo"
^ here
Я бегу по ansible-playbook local.yml
Я действительно не могу понять, что здесь не так.