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.
26 lines
721 B
Bash
26 lines
721 B
Bash
4 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
ansible-inventory -i static_inventory.yml -i constructed.yml --graph | tee out.txt
|
||
|
|
||
|
grep '@_hostvalue1' out.txt
|
||
|
grep '@_item0' out.txt
|
||
|
grep '@_key0_value0' out.txt
|
||
|
grep '@prefix_hostvalue1' out.txt
|
||
|
grep '@prefix_item0' out.txt
|
||
|
grep '@prefix_key0_value0' out.txt
|
||
|
grep '@separatorhostvalue1' out.txt
|
||
|
grep '@separatoritem0' out.txt
|
||
|
grep '@separatorkey0separatorvalue0' out.txt
|
||
|
|
||
|
ansible-inventory -i static_inventory.yml -i no_leading_separator_constructed.yml --graph | tee out.txt
|
||
|
|
||
|
grep '@hostvalue1' out.txt
|
||
|
grep '@item0' out.txt
|
||
|
grep '@key0_value0' out.txt
|
||
|
grep '@key0separatorvalue0' out.txt
|
||
|
grep '@prefix_hostvalue1' out.txt
|
||
|
grep '@prefix_item0' out.txt
|
||
|
grep '@prefix_key0_value0' out.txt
|