mirror of
https://github.com/roles-ansible/ansible_role_weechat.git
synced 2024-08-16 13:09:48 +02:00
20 lines
672 B
YAML
20 lines
672 B
YAML
---
|
|
- 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"
|
|
when: weechat__install | bool
|
|
|
|
- name: deploy weechat__configuration
|
|
ansible.builtin.include_tasks: configure_custom_config.yml
|
|
when: weechat__use_custom_config | bool
|
|
|
|
- name: install requirements for weechat__plugins
|
|
ansible.builtin.include_tasks: configure_plugins.yml
|
|
when: weechat__install_plugins | bool
|
|
|
|
- name: setup weechat__autostart
|
|
ansible.builtin.include_tasks: setup_autostart.yml
|
|
when: weechat__autostart | bool
|