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/configure_plugins.yml

31 lines
1 KiB
YAML
Raw Normal View History

2020-03-11 20:51:00 +01:00
---
- name: create weechat directory
become: true
file:
2021-05-27 16:18:04 +02:00
path: "{{ weechat__home_directory }}/.weechat"
state: directory
2021-05-27 16:18:04 +02:00
owner: "{{ weechat__user }}"
mode: "0750"
- name: create weechat plugins directory
become: true
file:
2021-05-27 16:18:04 +02:00
path: "{{ weechat__home_directory }}/.weechat/{{ item.value }}/autoload"
state: directory
2021-05-27 16:18:04 +02:00
owner: "{{ weechat__user }}"
mode: "0750"
with_dict: "{{ weechat_plugin_languages }}"
2020-03-11 20:51:00 +01:00
- name: download weechat plugins
get_url:
url: 'https://weechat.org/files/scripts/{{ item }}'
2021-05-27 16:18:04 +02:00
dest: "{{ weechat__home_directory }}/.weechat/{{ weechat_plugin_languages[item.split('.',1)[-1]] }}/{{ item }}"
with_items: '{{ weechat__plugins }}'
2020-03-11 20:51:00 +01:00
- name: symlinking plugins to autoload
file:
2021-05-27 16:18:04 +02:00
src: "{{ weechat__home_directory }}/.weechat/{{ weechat_plugin_languages[item.split('.',1)[-1]] }}/{{ item }}"
dest: "{{ weechat__home_directory }}/.weechat/{{ weechat_plugin_languages[item.split('.',1)[-1]] }}/autoload/{{ item }}"
2020-03-11 20:51:00 +01:00
state: link
2021-05-27 16:18:04 +02:00
with_items: '{{ weechat__plugins }}'