Standardize test vars

Move test host vars from the inventory to individual files for each
host. 'ansible_become' has been removed from localhost's vars since it
should be handled on a playbook basis.

Change-Id: Iee0b0c4d4f6e4dc27410d47f01cacaa967deefb1
This commit is contained in:
Jimmy McCrory 2017-04-25 16:15:21 -07:00
parent fe3ae20f74
commit 509f26b41b
2 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,4 @@
---
ansible_host: 10.100.100.2
ansible_become: True
ansible_user: root

View File

@ -1,6 +1,6 @@
[all]
localhost ansible_become=True
container1 ansible_host=10.100.100.2 ansible_become=True ansible_user=root
localhost
container1
[repo_all]
container1