mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
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:
parent
62db062ee9
commit
643b064af3
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue