From 323970b81737fba4ce5fd7503255dc9e59440cac Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Thu, 27 Feb 2020 18:01:50 +0100 Subject: ansible.cfg: set interpreter_python = auto The default is auto_legacy, which will choose /usr/bin/python over /usr/bin/python3*, but will change to auto in the future. Let's live in the future! --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index 5720cb3..d205e0c 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,6 +1,7 @@ [defaults] inventory = inventory error_on_missing_handler = True +interpreter_python = auto [ssh_connection] pipelining = True -- cgit v1.2.1