Я просто пытался написать сборник пьес, одна и та же ошибка в каждом сборнике пьес

#ansible

Вопрос:

 --- # this is first playbook with handler
- host: demo
  user: ansible
  become: yes
  connection: ssh
  vars:
          pkgname: httpd
  task:
          - name: install httpd service
            action: yum name='{{pkgname}}' state=installed
            notify: restart httpd
  handler:
          - name: restart httpd
            action: service name=httpd state=restarted
 

 ERROR! 'task' is not a valid attribute for a Play

The error appears to be in '/home/ansible/handler.yml': line 2, column 3, but may
be elsewhere in the file depending on the exact syntax problem.

The offending line appears to be:

--- # this is first playbook with handler
- host: demo
  ^ here
 

Комментарии:

1. Измените свои вопросы, потому что они не читаются. И используйте tasks вместо task этого .

Ответ №1:

я думаю, что это tasks: (множественное число), а не task: