forked from CCCHH/ansible-infra
15 lines
357 B
YAML
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
|