Add ola and foobazdmx role and add playbook for light.z9

This commit is contained in:
yuri 2022-11-11 14:10:43 +01:00
commit aefdd123a4
No known key found for this signature in database
GPG key ID: E646779AC54AEC64
16 changed files with 168 additions and 0 deletions

View file

@ -0,0 +1,15 @@
- name: Install ola
ansible.builtin.apt:
name: ola
- name: Generate ola-ftdidmx.conf
ansible.builtin.template:
src: ola-ftdidmx.conf.j2
dest: /etc/ola/ola-ftdidmx.conf
mode: "0664"
owner: olad
group: olad
- name: Enable and start ola service
ansible.builtin.systemd:
name: olad.service
state: started
enabled: true