的Ansible最佳實踐文檔有示例代碼:如何將標籤應用於Ansible任務文件中的每個命令?
---
# file: roles/common/tasks/main.yml
- name: be sure ntp is installed
yum: name=ntp state=installed
tags: ntp
- name: be sure ntp is configured
template: src=ntp.conf.j2 dest=/etc/ntp.conf
notify:
- restart ntpd
tags: ntp
- name: be sure ntpd is running and enabled
service: name=ntpd state=running enabled=yes
tags: ntp
我期待避免重複tags: ntp
線。每個指令是否可以繼承標籤?
真棒!看起來這個功能需要Ansible v2 btw。 – Ryre
是的,你需要安全的2.0來使用塊。 –