Add role for flask

This commit is contained in:
Gašper Fele-Žorž 2025-08-15 22:59:23 +02:00
parent 0b79607ee6
commit 2d3fea452f
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_os_family == 'Windows'
- import_tasks: main_lin.yml
when: ansible_os_family == 'Debian'

View file

@ -0,0 +1,7 @@
- name: Install flask
apt:
name:
- python3-flask
- python-flask-doc
state: latest