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

26 lines
716 B
YAML
Raw Normal View History

2019-07-27 17:11:01 +02:00
---
2021-03-20 18:28:29 +01:00
- name: Perform optional versionscheck
ansible.builtin.include_tasks: versioncheck.yml
2021-03-20 17:59:44 +01:00
when: submodules_versioncheck|bool
2019-07-27 17:11:01 +02:00
2022-10-25 22:51:18 +02:00
- name: Install acmetool
2021-07-16 01:19:30 +02:00
ansible.builtin.include_tasks: install.yml
2022-10-25 22:51:18 +02:00
- name: Configure systemd
2021-09-30 02:30:42 +02:00
ansible.builtin.include_tasks: systemd.yml
2022-10-25 22:51:18 +02:00
- name: Configure acmetool
2021-07-16 01:19:30 +02:00
ansible.builtin.include_tasks: configure.yml
2019-07-27 17:11:01 +02:00
- name: Copy hook to enable acmetool to restart services
2021-07-16 01:19:30 +02:00
ansible.builtin.include_tasks: hook.yml
2019-07-27 17:44:40 +02:00
- name: Reload systemd and enable acmetool timer unit
2021-07-16 01:19:30 +02:00
ansible.builtin.include_tasks: timer.yml
2021-09-30 22:07:35 +02:00
2022-10-25 22:51:18 +02:00
- name: Optionally want domains
2021-09-30 22:07:35 +02:00
ansible.builtin.include_tasks: want_domains.yml
2022-10-25 22:51:18 +02:00
- name: Optionally unwant domains
2021-09-30 22:07:35 +02:00
ansible.builtin.include_tasks: unwant_domains.yml