Update dependencies for OUI, add matplotlib

This commit is contained in:
polz 2025-08-13 11:46:03 +02:00
parent 33496e4eec
commit 8c5b9d97a7
4 changed files with 17 additions and 2 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,4 @@
- name: Install maptplotlib
apt:
name: matplotlib
state: latest

View file

@ -0,0 +1,2 @@
- name: Install matplotlib
win_command: pip install matplotlib