1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-29 20:51:11 +02:00

🚀 Adding Ansible configuration (not tested)

This commit is contained in:
Yohann D'ANELLO
2020-07-15 07:46:42 +02:00
parent 71f6daf0e8
commit cdc053718f
7 changed files with 89 additions and 0 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 succedded