mirror of
https://github.com/roles-ansible/ansible_role_weechat.git
synced 2024-08-16 13:09:48 +02:00
20 lines
674 B
YAML
20 lines
674 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
|