This commit is contained in:
jaydee
2022-12-14 02:23:34 +01:00
parent fdcd79983a
commit 7385b59c72
43 changed files with 1729 additions and 0 deletions

View File

@ -0,0 +1,26 @@
- hosts: omv
name: Install omv
become: true
become_user: root
tasks:
- name: Apt
ansible.builtin.apt:
update_cache: true
upgrade: true
- name: Install python + pip
ansible.builtin.apt:
name:
- python3
- python3-pip
- apt-transport-https
- mosquitto
state: present
- name: Install pip modules
ansible.builtin.pip:
name:
- wheel
- paho-mqtt
- ping3
- requests
- autorandr
- getmac