我不确定我在这里失踪了什么。
Ansible 2.1.2.0
Python 2.7.5
CentOS Linux版本7.2.1511(核心)
Playbook 文件如下所示:
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $ cat netdata.yml
---
- hosts: all
gather_facts: no
roles:
- netdata
[vagrant@myvagrant ~/aks/netdata_ansible/ansible] $
角色' s(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] $
答案 0 :(得分:2)
systemd
module是在Ansible 2.2中引入的。
systemd - 管理服务。
2.2版中的新功能。
您正在使用Ansible 2.1.2,因此Ansible报告在任务中未定义任何已知操作。