2012-10-21 20:11:27 +02:00
|
|
|
---
|
2012-11-01 11:08:24 +01:00
|
|
|
- hosts: aliasgroup
|
2012-10-21 20:11:27 +02:00
|
|
|
vars:
|
|
|
|
test_file: /tmp/ansible-alias-test
|
|
|
|
tasks:
|
|
|
|
- action: command creates=$test_file touch $test_file
|
|
|
|
- action: command creates=$test_file false
|
|
|
|
- local_action: command true
|
|
|
|
- action: command removes=$test_file rm -f $test_file
|
2012-11-01 11:08:24 +01:00
|
|
|
|
|
|
|
- hosts: all
|
|
|
|
gather_facts: False
|
|
|
|
tasks:
|
|
|
|
- action: command true
|
|
|
|
delegate_to: alias-node.example.com
|
|
|
|
- action: command true
|