use correct python executable

This commit is contained in:
Konstantin Gizdov 2020-07-01 21:23:05 +03:00
parent e6d41a8696
commit ef82c2f9de
No known key found for this signature in database
GPG Key ID: 607DB55FF71B7052
4 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,7 @@
force: true force: true
- name: Install certbot-dns-digitalocean - name: Install certbot-dns-digitalocean
shell: "cd {{certbot_dir}}/{{ item }} && python setup.py install" shell: "cd {{certbot_dir}}/{{ item }} && {{ python_executable }} setup.py install"
with_items: "{{ certbot_dns_providers }}" with_items: "{{ certbot_dns_providers }}"
- name: Set Certbot script variable. - name: Set Certbot script variable.

3
vars/Debian.yml Normal file
View File

@ -0,0 +1,3 @@
---
certbot_package: certbot
python_executable: python3

View File

@ -1,2 +1,3 @@
--- ---
certbot_package: letsencrypt certbot_package: letsencrypt
python_executable: python3

View File

@ -1,2 +1,3 @@
--- ---
certbot_package: certbot certbot_package: certbot
python_executable: python3