🚀 Adding Ansible configuration (not tested)
This commit is contained in:
parent
71f6daf0e8
commit
cdc053718f
7 changed files with 89 additions and 0 deletions
20
ansible/roles/apt-basic/tasks/main.yml
Normal file
20
ansible/roles/apt-basic/tasks/main.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue