mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
348 B
YAML
17 lines
348 B
YAML
|
- 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]
|
||
|
|