From 14604df568eafd95d60373063e524bb70fc67793 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 12 Jun 2021 17:48:57 +0200 Subject: [PATCH] fix venv command --- tasks/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 4a4ed15..e2d31ad 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -11,7 +11,7 @@ pip: name: "{{ item }}" virtualenv: "{{ certbot_virtualenv }}" - virtualenv_command: "{{ certbot_virtualenv_command }} -m venv" + virtualenv_command: "{{ certbot_virtualenv_command }}" extra_args: --upgrade loop: - pip @@ -21,7 +21,7 @@ pip: name: "{{ item }}" virtualenv: "{{ certbot_virtualenv }}" - virtualenv_command: "{{ certbot_virtualenv_command }} -m venv" + virtualenv_command: "{{ certbot_virtualenv_command }}" environment: TMPDIR: /opt/python3/tmp loop: "{{ certbot_packages_extra }}" @@ -30,7 +30,7 @@ pip: name: "{{ item }}" virtualenv: "{{ certbot_virtualenv }}" - virtualenv_command: "{{ certbot_virtualenv_command }} -m venv" + virtualenv_command: "{{ certbot_virtualenv_command }}" loop: "{{ __certbot_packages }}" - name: Adjust file permissions