From 864f85a49adfbe5d9c3e7d731c617f9665506467 Mon Sep 17 00:00:00 2001 From: Tristan PILAT Date: Fri, 23 Oct 2020 11:38:56 +0200 Subject: [PATCH] Change default Python version to 3.x --- hosts | 2 +- prerequisite.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts b/hosts index 680aa87..8abb464 100644 --- a/hosts +++ b/hosts @@ -2,4 +2,4 @@ foo.example.com [openbsd:vars] -ansible_python_interpreter=/usr/local/bin/python2.7 +ansible_python_interpreter=/usr/local/bin/python3 diff --git a/prerequisite.yml b/prerequisite.yml index aaf5bbb..f5a76f2 100644 --- a/prerequisite.yml +++ b/prerequisite.yml @@ -12,6 +12,6 @@ - name: Install ansible's prerequisite # yamllint disable-line rule:line-length - raw: export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(uname -p)/; pkg_add -z python-2 + raw: export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(uname -p)/; pkg_add -z python-3 # vim:ft=ansible