1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_acmetool.git synced 2024-08-16 12:29:49 +02:00
ansible_role_acmetool/tasks/main.yml
2023-10-29 22:34:09 +01:00

33 lines
814 B
YAML

---
- name: Perform optional versionscheck
ansible.builtin.include_tasks:
file: 'versioncheck.yml'
when: submodules_versioncheck | bool
- name: Install acmetool
ansible.builtin.include_tasks:
file: 'install.yml'
- name: Configure systemd
ansible.builtin.include_tasks:
file: 'systemd.yml'
- name: Configure acmetool
ansible.builtin.include_tasks:
file: 'configure.yml'
- name: Copy hook to enable acmetool to restart services
ansible.builtin.include_tasks:
file: 'hook.yml'
- name: Reload systemd and enable acmetool timer unit
ansible.builtin.include_tasks:
file: 'timer.yml'
- name: Optionally want domains
ansible.builtin.include_tasks:
file: 'want_domains.yml'
- name: Optionally unwant domains
ansible.builtin.include_tasks:
file: 'unwant_domains.yml'