nk20/ansible/roles/1-apt-basic/tasks/main.yml

24 lines
458 B
YAML
Raw Normal View History

---
- name: Install basic APT packages
apt:
update_cache: true
name:
- nginx
- python3
- python3-pip
- python3-dev
- uwsgi
- uwsgi-plugin-python3
- python3-venv
- git
- acl
2020-07-21 20:36:37 +00:00
- gettext
2020-09-01 09:23:56 +00:00
- libjs-bootstrap4
- fonts-font-awesome
- texlive-latex-extra
- texlive-fonts-extra
- texlive-lang-french
2020-07-15 07:27:11 +00:00
register: pkg_result
retries: 3
until: pkg_result is succeeded