ansible-playbook之tags标签
Posted zhaojingyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible-playbook之tags标签相关的知识,希望对你有一定的参考价值。
一、tags标签
[root@linux-node1 ansible]# cat httpd.yaml --- - hosts: date remote_user: root tasks: - name: install httpd package yum: name=httpd tags: inshttpd - name: copy conf file copy: src=files/httpd.conf dest=/etc/httpd/conf backup=yes notify: restart service - name: start service service: name=httpd state=started enabled=yes tags: rshttpd handlers: - name: restart service service: name=httpd state=restarted
二、执行自己定义的标签 (-t 加自定义标签)、标签名字可以一样,如果调用会同时执行
ansible-playbook -t inshttpd,rshttpd httpd.yaml
以上是关于ansible-playbook之tags标签的主要内容,如果未能解决你的问题,请参考以下文章