mirror of https://github.com/ansible/ansible.git
Ability to import task lists and handler lists from a top level playbook file. It is possible
to use multiple import statements to implement 'class' like behavior, and also to share a common list of handlers between multiple patterns.pull/3/head
parent
32c32abb4a
commit
ab408b0000
@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: no selinux
|
||||
action: command /usr/sbin/setenforce 0
|
||||
- name: no iptables
|
||||
action: service name=iptables state=stopped
|
||||
@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: restart apache
|
||||
action: service name=httpd state=restarted
|
||||
- name: restart memcached
|
||||
action: service name=memcached state=restarted
|
||||
Loading…
Reference in New Issue