14 lines
306 B
YAML
14 lines
306 B
YAML
|
|
---
|
||
|
|
- name: Add config
|
||
|
|
ansible.builtin.include_tasks:
|
||
|
|
file: addconfig.yml
|
||
|
|
|
||
|
|
- name: Generate certificates
|
||
|
|
ansible.builtin.include_tasks:
|
||
|
|
file: certificates.yml
|
||
|
|
|
||
|
|
- name: Restart rproxy service
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: "container-rproxy.service"
|
||
|
|
state: restarted
|
||
|
|
enabled: yes
|