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