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.
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
# integration/transport_config
|
|
# Hosts with twiddled configs that need to be checked somehow.
|
|
|
|
|
|
# tansport()
|
|
tc-transport-unset
|
|
tc-transport-local ansible_connection=local
|
|
tc-transport-smart ansible_connection=smart
|
|
|
|
# python_path()
|
|
tc-python-path-unset
|
|
tc-python-path-hostvar ansible_python_interpreter=/hostvar/path/to/python
|
|
tc-python-path-local-unset ansible_connection=local
|
|
tc-python-path-local-explicit ansible_connection=local ansible_python_interpreter=/a/b/c
|
|
|
|
# remote_addr()
|
|
tc-remote-addr-unset # defaults to inventory_hostname
|
|
tc-remote-addr-explicit-ssh ansible_ssh_host=ansi.ssh.host
|
|
tc-remote-addr-explicit-host ansible_host=ansi.host
|
|
tc-remote-addr-explicit-both ansible_ssh_host=a.b.c ansible_host=b.c.d
|
|
|
|
# password()
|
|
tc-password-unset
|
|
tc-password-explicit-ssh ansible_ssh_pass=ansi-ssh-pass
|
|
tc-password-explicit-user ansible_password=ansi-pass
|
|
tc-password-explicit-both ansible_password=a.b.c ansible_ssh_pass=c.b.a
|
|
|
|
# become()
|
|
tc-become-unset
|
|
tc-become-set
|
|
|
|
# become_method()
|
|
tc-become-method-unset
|
|
tc-become-method-su ansible_become_method=su
|
|
|
|
# become_user()
|
|
tc-become-user-unset
|
|
tc-become-user-set ansible_become_user=ansi-become-user
|
|
|
|
# become_pass()
|
|
tc-become-pass-unset
|
|
tc-become-pass-password ansible_become_password=apassword
|
|
tc-become-pass-pass ansible_become_pass=apass
|
|
tc-become-pass-both ansible_become_password=a.b.c ansible_become_pass=c.b.a
|
|
|
|
# port()
|
|
tc-port-unset
|
|
tc-port-explicit-port ansible_port=1234
|
|
tc-port-explicit-ssh ansible_ssh_port=4321
|
|
tc-port-both ansible_port=1717 ansible_ssh_port=1532
|