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.
15 lines
684 B
Makefile
15 lines
684 B
Makefile
11 years ago
|
all: non_destructive destructive check_mode test_hash # amazon rackspace
|
||
11 years ago
|
|
||
|
non_destructive:
|
||
|
ansible-playbook non_destructive.yml -i inventory -e @integration_config.yml -v $(TEST_FLAGS)
|
||
11 years ago
|
|
||
11 years ago
|
destructive:
|
||
11 years ago
|
ansible-playbook destructive.yml -i inventory -e @integration_config.yml -v $(TEST_FLAGS)
|
||
11 years ago
|
|
||
11 years ago
|
check_mode:
|
||
|
ansible-playbook check_mode.yml -i inventory -e @integration_config.yml -v --check $(TEST_FLAGS)
|
||
|
|
||
11 years ago
|
test_hash:
|
||
|
ANSIBLE_HASH_BEHAVIOUR=replace ansible-playbook test_hash.yml -i inventory -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|
||
|
ANSIBLE_HASH_BEHAVIOUR=merge ansible-playbook test_hash.yml -i inventory -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|