mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
YAML
17 lines
348 B
YAML
13 years ago
|
- pattern: '*.prod.example.com'
|
||
|
tasks:
|
||
|
- do:
|
||
|
- update apache (note: service module TBD)
|
||
|
- command
|
||
|
- [/usr/bin/yum, update, apache]
|
||
|
onchange:
|
||
|
- do:
|
||
|
- restart apache (note: service module TBD)
|
||
|
- command
|
||
|
- [/sbin/service, apache, restart]
|
||
|
- do:
|
||
|
- run bin false
|
||
|
- command
|
||
|
- [/bin/false]
|
||
|
|