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
2022-10-25 22:51:18 +02:00

25 lines
716 B
YAML

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