1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-18 05:43:10 +00:00
community.general/examples/playbook.yml
Michael DeHaan 3c3111c1f3 Add optional hosts parameter to examples to show how we can
override the host file in a playbook to load different groups
of hosts.
2012-02-25 19:56:06 -05:00

27 lines
617 B
YAML

- pattern: '*'
hosts: '/etc/ansible/hosts'
tasks:
- do:
- configure template & module variables
- setup a=2 b=3 c=4
- do:
- copy a file
- copy /srv/a /srv/b
notify:
- restart apache
- do:
- template from local file template.j2 to remote location /srv/file.out
- template /srv/template.j2 /srv/file.out
notify:
- restart apache
- quack like a duck
- do:
- something that will fail
- command /bin/false
handlers:
- do:
- restart apache
- command /sbin/service httpd restart
- do:
- quack like a duck
- command /bin/true