ansible-infra/playbooks/roles/ola/tasks/main.yml

15 lines
357 B
YAML

- 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