From 44950efc3498d3c47681b199742e3c0530b422a6 Mon Sep 17 00:00:00 2001 From: joy717 Date: Thu, 7 Mar 2024 17:06:35 +0800 Subject: [PATCH] fix ssh_args in ansible.cfg no effect (#10981) --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index e28ce32d7..48a3ff01b 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,6 +1,6 @@ [ssh_connection] pipelining=True -ansible_ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o ConnectionAttempts=100 -o UserKnownHostsFile=/dev/null +ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o ConnectionAttempts=100 -o UserKnownHostsFile=/dev/null #control_path = ~/.ssh/ansible-%%r@%%h:%%p [defaults] # https://github.com/ansible/ansible/issues/56930 (to ignore group names with - and .)