diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2020-02-27 18:01:50 +0100 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2020-02-27 18:01:52 +0100 |
commit | 323970b81737fba4ce5fd7503255dc9e59440cac (patch) | |
tree | b6aec0700b6caacc1e7887b518143999344a83cf | |
parent | 3f2d398b8d7594b06f5151e8e2ac7fab20f2160c (diff) | |
download | labitat-ansible-323970b81737fba4ce5fd7503255dc9e59440cac.tar.gz labitat-ansible-323970b81737fba4ce5fd7503255dc9e59440cac.tar.xz labitat-ansible-323970b81737fba4ce5fd7503255dc9e59440cac.zip |
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!
-rw-r--r-- | ansible.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
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 |