mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
18 lines
473 B
YAML
18 lines
473 B
YAML
---
|
|
- hosts: all
|
|
user: root
|
|
vars:
|
|
http_port: 80
|
|
max_clients: 200
|
|
tasks:
|
|
- include: base.yml favcolor=blue
|
|
- name: write the foo config file using vars set above
|
|
action: template src=foo.j2 dest=/etc/some_random_foo.conf
|
|
notify:
|
|
- restart apache
|
|
- name: ensure apache is running
|
|
action: service name=httpd state=started
|
|
- name: pointless test action
|
|
action: command /bin/echo {{ http_port }}
|
|
handlers:
|
|
- include: handlers.yml
|