Синтаксис Ansible notify - имя ^ в задании не обнаружено никаких действий
Я не уверен, что мне здесь не хватает.
Ansible 2.1.2.0
Python 2.7.5
CentOS Linux выпуск 7.2.1511 (Core)
ФайлPlaybook выглядит так:
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $ cat netdata.yml
---
- hosts: all
gather_facts: no
roles:
- netdata
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $
Роль (netdata) main.yml выглядит так:
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $ cat roles/netdata/tasks/main.yml
---
# ansible-playbook -i
#- name: Netdata details
# debug:
# msg: "server = {{ netdata_server }}"
##
#- name: Check if netdata systemctl is running
# command: "systemctl status netdata"
# ignore_errors: yes
# register: netdata_systemctl_status
#
#- name: Report status of Netdata Service
# debug:
# msg: "{{ netdata_systemctl_status.stdout_lines }}"
#
- name: Start netdata systemctl if it is not running
debug:
msg: "Restarting netdata systemctl now"
notify: restart netdata systemctl
#when: netdata_systemctl_status | failed
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $
Обработчик уведомляет уведомителя, и его основной файл выглядит так:
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $ cat roles/netdata/handlers/main.yml
---
# PS.
# Order of listing notifiers in this file matters.
# Order of listing notifiers while calling/notifying a notifier in a task/action doesn't.
- name: restart netdata systemctl
systemd:
name: netdata
state: restarted
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $
Тогда почему Ansible дает мне следующую ошибку?
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $ ansible-playbook -i "`hostname`," --connection=local netdata.yml
ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.
The error appears to have been in '/home/vagrant/aks/netdata_ansible/ansible/roles/netdata/handlers/main.yml': line 6, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: restart netdata systemctl
^ here
The error appears to have been in '/home/vagrant/aks/netdata_ansible/ansible/roles/netdata/handlers/main.yml': line 6, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: restart netdata systemctl
^ here
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $
1 ответ
Решение
systemd
модуль был введен в Ansible 2.2.
systemd - Управление сервисами.
Новое в версии 2.2.
Вы используете Ansible 2.1.2, следовательно, Ansible сообщает, что в задаче не определено ни одного известного действия.