updated to include more OSs and pip install

This commit is contained in:
Eric Anderson
2020-04-27 13:27:59 -07:00
parent 09c8986636
commit 7203b84e63
15 changed files with 230 additions and 36 deletions
+21
View File
@@ -0,0 +1,21 @@
---
- name: certbot | PyPI | Upgrade pip, setuptools, and pyopenssl as required
pip:
name: "{{ item }}"
executable: "{{ certbot_pip_executable }}"
loop:
- pip
- setuptools
- pyopenssl
- name: certbot | PyPI | Install certbot {{ certbot_pip_version }}
pip:
name: certbot=={{ certbot_pip_version }}
executable: "{{ certbot_pip_executable }}"
- name: certbot | PyPI | Install certbot plugins
pip:
name: "certbot-{{ item }}=={{ certbot_pip_version }}"
executable: "{{ certbot_pip_executable }}"
loop: "{{ certbot_plugins }}"
when: certbot_plugins is defined