Remove hard-coded path references

Remove hard-coded path references in some Ansible configuration files

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
This commit is contained in:
Scott Lowe 2017-12-20 07:43:10 -07:00
parent 62db062ee9
commit 643b064af3
No known key found for this signature in database
GPG key ID: 949F43F6E6C11780
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[defaults]
inventory = ./.vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory
private_key_file = /Users/slowe/.vagrant.d/insecure_private_key
private_key_file = ~/.vagrant.d/insecure_private_key
remote_user = vagrant
host_key_checking = False
host_key_checking = False

View file

@ -5,4 +5,4 @@ remote_user = vagrant
host_key_checking = false
[ssh_connection]
ssh_args = -o IdentityFile=/home/slowe/.vagrant.d/insecure_private_key -o PubKeyAuthentication=yes -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=~/.ansible/cp/ansible-ssh-%h-%p-%r
ssh_args = -o IdentityFile=~/.vagrant.d/insecure_private_key -o PubKeyAuthentication=yes -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=~/.ansible/cp/ansible-ssh-%h-%p-%r