Ansible忽略inventory或group_vars中的ansible_ssh_extra_args

时间:2015-10-19 13:20:38

标签: ansible

我正在尝试将ansible连接到本地网络中的一台机器,该机器需要在SSH调用中传递一些额外的选项。我在库存,组变量,主机变量中尝试了ansible_ssh_extra_args,但它被忽略了。以下是我的库存文件示例:

[dev]
192.168.10.15

[dev:vars]
ansible_ssh_private_key_file="keys/deploy-myserver"
ansible_ssh_extra_args="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
ansible_ssh_user="deploy"

如何与特定主机建立ansible SSH连接使用我自己的自定义SSH选项?

1 个答案:

答案 0 :(得分:4)

这些是为2.0添加的,所以除非你正在运行测试版,否则它们将无法运行......