ansible/examples/playbook.yml
2012-02-05 12:52:07 -05:00

22 lines
572 B
YAML

- pattern: '*'
tasks:
- do:
- configure template & module variables
- [ setup, [ "a=2", "b=3", "c=4" ] ]
- do:
- copy a file
- [ copy, [ "/srv/a", "/srv/b" ] ]
- do:
- template from local file template.j2 to remote location /srv/file.out
- [ template, [ '/srv/template.j2', '/srv/file.out' ] ]
- do:
- update apache
- [ command, [/usr/bin/yum, update, apache] ]
onchange:
- do:
- restart apache
- [ command, [/sbin/service, apache, restart] ]
- do:
- run bin false
- [ command, [/bin/false] ]