1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_weechat.git synced 2024-08-16 13:09:48 +02:00
ansible_role_weechat/tasks/main.yml

21 lines
672 B
YAML
Raw Normal View History

---
- name: perform optinal versionscheck
ansible.builtin.include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: install weechat
ansible.builtin.include_tasks: "install-{{ ansible_os_family|lower }}.yml"
2021-05-27 16:18:04 +02:00
when: weechat__install | bool
2019-07-20 20:04:45 +02:00
2021-05-27 16:18:04 +02:00
- name: deploy weechat__configuration
ansible.builtin.include_tasks: configure_custom_config.yml
2021-05-27 16:18:04 +02:00
when: weechat__use_custom_config | bool
2021-05-27 16:18:04 +02:00
- name: install requirements for weechat__plugins
ansible.builtin.include_tasks: configure_plugins.yml
2021-05-27 16:18:04 +02:00
when: weechat__install_plugins | bool
2020-03-11 10:42:48 +01:00
2021-05-27 16:18:04 +02:00
- name: setup weechat__autostart
ansible.builtin.include_tasks: setup_autostart.yml
2021-05-27 16:18:04 +02:00
when: weechat__autostart | bool