1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 18:08:21 +02:00

🐛 First fix Ansible installation

This commit is contained in:
Yohann D'ANELLO
2020-07-15 09:27:11 +02:00
parent 3dfed70eb1
commit 3f0208a664
6 changed files with 40 additions and 25 deletions

View File

@ -0,0 +1,20 @@
---
- name: Install basic APT packages
apt:
update_cache: true
name:
- nginx
- python3
- python3-pip
- python3-dev
- uwsgi
- uwsgi-plugin-python3
- python3-venv
- git
- acl
- texlive-latex-extra
- texlive-fonts-extra
- texlive-lang-french
register: pkg_result
retries: 3
until: pkg_result is succeeded